Last active
November 20, 2018 21:11
-
-
Save adrianhall/3a922a53fc0f60922797f5f31eb68dd3 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 User { | |
id: ID! | |
name: String! | |
email: String | |
locations: [Location] | |
reviews: [Review] | |
favorites: [Location] | |
} | |
type Location { | |
id: ID! | |
owner: User! | |
name: String! | |
longitude: Float | |
latitude: Float | |
address: String | |
averageRating: Float | |
favoritesCount: Int | |
reviews: [Review] | |
} | |
type Review { | |
id: ID! | |
owner: User! | |
location: Location! | |
content: String! | |
rating: Number! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment