PR-757991: adding typegraphql.

This commit is contained in:
2023-03-10 13:18:24 +00:00
parent 6ff6edaaf4
commit 4ffc696ee4
14 changed files with 392 additions and 114 deletions

28
schema.gql Normal file
View 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!
}