GeoArea
Description
A GeoArea is a node that represents a group of countries and a simple English description. It is designed to add a geographic scope to another node, usually (but not limited to) a :Representation node.
This geographic scope gathers together countries, territories, and continents. Ultimately, the scope of a GeoArea is defined by the countries it includes.
When attached to the Representation node, the scope indicates where we are allowed to represent a client in a particular area of representation.
Label
:GeoArea
Properties
| Property | Description | Type |
|---|---|---|
| id | A unique identifier for this GeoArea node | string (uuid) |
| description | The English description of the GeoArea | string |
| createdBy | the person or process that created the node | string |
| createdDate | dateTime | |
| modifiedBy | the person or process who last modified the node | string |
| modifiedDate | dateTime |
Key
id
Relationships
The HAS_GEO_AREA relationship connects the GeoArea to exterior nodes, usually :Representation nodes.
The INCLUDES relationship connects the GeoArea to :Territory and :Country nodes.
Examples
cypher
MATCH (geoArea:GeoArea)
RETURN geoArea.description AS GeoArea
ORDER BY GeoArea;