PR-022271: updating packages.

This commit is contained in:
2023-10-09 20:42:59 +00:00
parent d622a3c007
commit 978e5c9590
4 changed files with 1128 additions and 927 deletions

20
schema.graphql Normal file
View File

@ -0,0 +1,20 @@
# -----------------------------------------------
# !!! 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!
}