mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-01-09 13:36:47 -06:00
28 lines
445 B
GraphQL
28 lines
445 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: Text!
|
|
}
|
|
|
|
type TestMutation {
|
|
textMutation(text: String!): TextMutation!
|
|
}
|
|
|
|
type Text {
|
|
text: String!
|
|
}
|
|
|
|
type TextMutation {
|
|
text: String!
|
|
} |