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

20 lines
363 B
GraphQL
Raw Permalink Normal View History

2023-10-09 14:42:59 -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: String!
}
type TestMutation {
text(text: String!): String!
}