Skip to content

Instantly share code, notes, and snippets.

@adrianhall
Last active November 20, 2018 21:11
Show Gist options
  • Save adrianhall/3a922a53fc0f60922797f5f31eb68dd3 to your computer and use it in GitHub Desktop.
Save adrianhall/3a922a53fc0f60922797f5f31eb68dd3 to your computer and use it in GitHub Desktop.
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