Skip to content

Instantly share code, notes, and snippets.

@parweb
Created April 10, 2018 00:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parweb/28bbfc6999203b466fca2678026575db to your computer and use it in GitHub Desktop.
Save parweb/28bbfc6999203b466fca2678026575db to your computer and use it in GitHub Desktop.
Mutations
type Location {
id: ID! @unique
lat: Float!
lng: Float!
street: String
postalCode: String
city: City
}
type City {
id: ID! @unique
name: String! @unique
country: Country!
locations: [Location!]!
}
type Country {
id: ID! @unique
name: String! @unique
cities: [City!]!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment