Last active
September 7, 2020 07:18
-
-
Save alfari16/769ac326d57c5ddea269d03b84be68eb 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
| #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