mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-07-25 22:18:24 -06:00
PR-757991: adding typegraphql.
This commit is contained in:
28
schema.gql
Normal file
28
schema.gql
Normal file
@ -0,0 +1,28 @@
|
||||
# -----------------------------------------------
|
||||
# !!! 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!
|
||||
}
|
Reference in New Issue
Block a user