Location
A physical or logical location, such as a warehouse, pickup point, or detected user location.
Type Definition
type Location {
zipcode: String
city: String
subdivisions: [String]
country: String
continent: String
accuracyRadius: Int
latitude: Float
longitude: Float
timeZone: String
}Fields
Relationships
The Location type represents geographic and spatial information that can be associated with various entities in the system, such as warehouses, pickup points, or user-detected locations. It provides comprehensive location data including postal information, geographic coordinates, and timezone details.
Example
query {
location {
zipcode
city
subdivisions
country
continent
accuracyRadius
latitude
longitude
timeZone
}
}Implements
None
Related Types
- String