Files
gitlab-foss/fixtures/lib/gitlab/graphql/queries/mixed_client_skipped_argument.graphql
2021-01-07 21:10:18 +00:00

12 lines
155 B
GraphQL

query($slug: String!, $foo: String) {
thingy(someArg: $foo) @client {
x
y
z
}
post(slug: $slug) {
title
otherThing @client
}
}