OBJECT
Location
Location
link GraphQL Schema definition
- type Location {
- # Location identifier
- : UUID!
- # Location address
- : String!
- # Location latitude
- : Float!
- # Location longitude
- : Float!
- # Whether the longitude and latitude were provided when creating a location, or
- # whether they were determined by geocoding the address
- : LocationCoordinatesOrigin!
- # Created date
- : DateTime!
- # Updated date
- : DateTime!
- }