PR-442185: fixing the type graphql schema.

This commit is contained in:
2023-03-14 00:15:33 +00:00
parent 28c1d501a0
commit 00a60519a2
7 changed files with 55 additions and 86 deletions

View File

@ -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!
}