GeoLocation

open_in_new

GraphQL Schema definition

  • type GeoLocation {
  • # @deprecated
  • altitude: String
  • # 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!
  • }