summaryrefslogtreecommitdiff
path: root/tests/examplefiles/graphql/ex11_directives.graphql
blob: 9f0b76f189fa724609974b2b6a8330456d5fc2ee (plain)
1
2
3
4
5
6
7
8
query Hero($episode: Episode, $withFriends: Boolean!) {
  hero(episode: $episode) {
    name
    friends @include(if: $withFriends) {
      name
    }
  }
}