summaryrefslogtreecommitdiff
path: root/tests/examplefiles/graphql/ex14_inline_fragments2.graphql
blob: f756edc452e046e34d29992772fa25d1bcbdbfcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  search(text: "an") {
    __typename
    ... on Human {
      name
    }
    ... on Droid {
      name
    }
    ... on Starship {
      name
    }
  }
}