Skip to content

Instantly share code, notes, and snippets.

@alfari16
Last active September 7, 2020 07:18
Show Gist options
  • Select an option

  • Save alfari16/769ac326d57c5ddea269d03b84be68eb to your computer and use it in GitHub Desktop.

Select an option

Save alfari16/769ac326d57c5ddea269d03b84be68eb to your computer and use it in GitHub Desktop.
#typeDefs.graphql
type Query{
allMerchants: [Merchant!]!
}
type Merchant {
id: ID!
name: String!
products: [Product!]!
location: Location!
}
type Product{
id: ID!
name: String!
}
type Location {
id: ID!
latitude: Float!
longitude: Float!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment