mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Co-authored-by: Dimitri POSTOLOV <en3m@ya.ru> Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
19 lines
258 B
GraphQL
19 lines
258 B
GraphQL
type Query {
|
|
foo: Int!
|
|
bar: String
|
|
test: String
|
|
last: Boolean
|
|
fooTwo: Int!
|
|
}
|
|
|
|
type Mutation {
|
|
addFooAnother(foo: Int!): Int!
|
|
addBar(bar: String): String
|
|
addTest(test: String): String
|
|
}
|
|
|
|
schema {
|
|
query: Query
|
|
mutation: Mutation
|
|
}
|
|
# test 3
|