Skip to content

Instantly share code, notes, and snippets.

@cgrice
Created March 20, 2018 09:30
Show Gist options
  • Save cgrice/db923da003eb1cf7f66ceda700980dda to your computer and use it in GitHub Desktop.
Save cgrice/db923da003eb1cf7f66ceda700980dda to your computer and use it in GitHub Desktop.
type Query {
products: [Product]
stores: [Store]
}
type Product {
id: ID!
name: String!
price: Int!
related: [Product]
inStockAt(storeId: ID!): Boolean
}
type Store {
id: ID!
name: String!
postcode: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment