1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
directive @tag(name: String!) repeatable on FIELD_DEFINITION type Query { allPandas: [Panda] panda(name: ID!): Panda _service: _Service! } type Panda { name: ID! favoriteFood: String @tag(name: "nom-nom-nom") } type _Service { sdl: String! }