mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-01-08 04:56:46 -06:00
20 lines
363 B
GraphQL
20 lines
363 B
GraphQL
# -----------------------------------------------
|
|
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
|
|
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
|
|
# -----------------------------------------------
|
|
|
|
type Mutation {
|
|
testMutation: TestMutation!
|
|
}
|
|
|
|
type Query {
|
|
test: Test!
|
|
}
|
|
|
|
type Test {
|
|
text: String!
|
|
}
|
|
|
|
type TestMutation {
|
|
text(text: String!): String!
|
|
} |