summaryrefslogtreecommitdiff
path: root/tests/examplefiles/graphql/ex13_inline_fragments1.graphql
blob: df261926d42be75aa6348ff4b2e87f01c08041b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
query HeroForEpisode($ep: Episode!) {
  hero(episode: $ep) {
    name
    ... on Droid {
      primaryFunction
    }
    ... on Human {
      height
    }
  }
}