mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
22 lines
243 B
GraphQL
22 lines
243 B
GraphQL
|
type Mutation {
|
||
|
bar(
|
||
|
arg1: SampleInput!
|
||
|
): SampleOutput
|
||
|
}
|
||
|
|
||
|
type Mutation {
|
||
|
foo(
|
||
|
arg1: SampleInput!
|
||
|
): SampleOutput
|
||
|
}
|
||
|
|
||
|
input SampleInput {
|
||
|
username: String!
|
||
|
password: String!
|
||
|
}
|
||
|
|
||
|
type SampleOutput {
|
||
|
accessToken: String!
|
||
|
}
|
||
|
|