graphql-engine/cli/internal/projectmetadata/testdata/diff/t1/server/metadata/actions.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
243 B
GraphQL
Raw Normal View History

type Mutation {
bar(
arg1: SampleInput!
): SampleOutput
}
type Mutation {
foo(
arg1: SampleInput!
): SampleOutput
}
input SampleInput {
username: String!
password: String!
}
type SampleOutput {
accessToken: String!
}