# Location A physical or logical location, such as a warehouse, pickup point, or detected user location. ## Type Definition ```graphql type Location { zipcode: String city: String subdivisions: [String] country: String continent: String accuracyRadius: Int latitude: Float longitude: Float timeZone: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | zipcode | String | Returns the zipcode for this location. | | city | String | Returns the city for this location. | | subdivisions | [String] | Returns the subdivisions for this location. | | country | String | Returns the country for this location. | | continent | String | Returns the continent for this location. | | accuracyRadius | Int | Returns the accuracy radius in meters for this location. | | latitude | Float | Returns the latitude for this location. | | longitude | Float | Returns the longitude for this location. | | timeZone | String | Returns the time zone for this location. | ## 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 ```graphql query { location { zipcode city subdivisions country continent accuracyRadius latitude longitude timeZone } } ``` ## Implements None ## Related Types - String