summaryrefslogtreecommitdiff
path: root/fixtures/lib/gitlab/graphql/queries/mixed_client_skipped_argument.graphql
blob: a54890085f19b84da0bbb8d227b788fe0a561ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
query($slug: String!, $foo: String) {
  thingy(someArg: $foo) @client {
    x
    y
    z
  }
  post(slug: $slug) {
    title
    otherThing @client
  }
}