OBJECT

Location

Location

link GraphQL Schema definition

  • type Location {
  • # Location identifier
  • id: UUID!
  • # Location address
  • address: String!
  • # Location latitude
  • lat: Float!
  • # Location longitude
  • long: Float!
  • # Whether the longitude and latitude were provided when creating a location, or
  • # whether they were determined by geocoding the address
  • coordinatesOrigin: LocationCoordinatesOrigin!
  • # Created date
  • createdAt: DateTime!
  • # Updated date
  • updatedAt: DateTime!
  • }