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