create-node-ts-graphql-server/schema.gql

28 lines
445 B
Plaintext
Raw Normal View History

2023-03-10 07:18:24 -06:00
# -----------------------------------------------
# !!! 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!
}