mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-01-09 05:26:50 -06:00
28 lines
445 B
Plaintext
28 lines
445 B
Plaintext
|
# -----------------------------------------------
|
||
|
# !!! 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!
|
||
|
}
|