mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-11-01 22:51:48 -06:00
PR-442185: fixing the type graphql schema.
This commit is contained in:
12
schema.gql
12
schema.gql
@@ -12,17 +12,9 @@ type Query {
|
||||
}
|
||||
|
||||
type Test {
|
||||
text: Text!
|
||||
text: String!
|
||||
}
|
||||
|
||||
type TestMutation {
|
||||
textMutation(text: String!): TextMutation!
|
||||
}
|
||||
|
||||
type Text {
|
||||
text: String!
|
||||
}
|
||||
|
||||
type TextMutation {
|
||||
text: String!
|
||||
text(text: String!): String!
|
||||
}
|
||||
Reference in New Issue
Block a user