parweb
03/07/2018, 1:23 PMtype User {
id: ID!
email: String!
location: Location!
}
type Location {
id: ID!
lat: Float!
lng: Float!
user: User
street: String
postalCode: String
city: City
}
type City {
id: ID!
name: String!
country: Country!
locations: [Location!]!
areas: [Area!]!
}