Created
March 20, 2018 09:30
-
-
Save cgrice/db923da003eb1cf7f66ceda700980dda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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