> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# GeoLocation

GraphQL object

Reference: https://docs.revvue.ai/api-reference/companies-locations/types/objects/geo-location

## Fields

- `region` — Region.
- `country` — Country.
- `countryCode` — Country code.
- `city` — City.
- `locationCode` — Location code.
- `street` — Street.
- `state` — State.
- `postcode` — Postcode.
- `coordinate` — Coordinates.
- `timeZoneId` — Time zone of location.

## Definition

```graphql
type GeoLocation {
  region: String
  country: String
  countryCode: String
  city: String
  locationCode: String
  street: String
  state: String
  postcode: String
  coordinate: Coordinate
  timeZoneId: String
}
```