mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
8c41ff539a
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2581 Co-authored-by: Aravind K P <8335904+scriptonist@users.noreply.github.com> GitOrigin-RevId: 327c26868102ea1c277b795b9f508847faa2ae8b
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!
|
|
}
|
|
|