OBJECT

Location

A location containing coordinates and an address

link GraphQL Schema definition

  • type Location {
  • # Unique knowledge base identifier (automatically generated)
  • id: ID!
  • # Latitude of the location
  • latitude: String
  • # Longitude of the location
  • longitude: String
  • # Street name of the location
  • street: String
  • # Street/house number of the location
  • streetNumber: String
  • # Zipcode of the location
  • zip: String
  • # City of the location
  • city: String
  • # Country of the location
  • country: String
  • }