Last active
November 20, 2018 21:13
-
-
Save adrianhall/2af30e751a17d775b2f9a3168e86b0be 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
input GPSInput { | |
longitude: Float | |
latitude: Float | |
radius: Float | |
} | |
input AddressInput { | |
street: String | |
city: String | |
state: String | |
zipcode: String | |
} | |
input LocationInput { | |
name: String | |
address: AddressInput | |
} | |
input ReviewInput { | |
locationId: ID! | |
content: String! | |
rating: Number! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment