GeoPoint

open_in_new

GraphQL Schema definition

  • type GeoPoint {
  • # latitude in decimal degrees.
  • # This is a string to preserve precision and prevent float representation errors
  • lat: String!
  • # longitude in decimal degrees.
  • # This is a string to preserve precision and prevent float representation errors
  • long: String!
  • # status of the geolocation process.
  • status: GeoPointStatus!
  • }