git.sr.ht/~sircmpwn/gqlgen@v0.0.0-20200522192042-c84d29a1c940/example/federation/products/graph/schema.graphqls (about)

     1  extend type Query {
     2      topProducts(first: Int = 5): [Product]
     3  }
     4  
     5  type Product @key(fields: "upc") {
     6      upc: String!
     7      name: String!
     8      price: Int!
     9  }