Event Series
Description
A recurring event, such as a festival or concert series, that is made up of multiple individual events. Event series captures the name that is common to all events in the series.
Label
:EventSeries
Properties
| Property | Description | Type |
|---|---|---|
| id | Unique identifier for this EventSeries node. A uuid. | string |
| tier | The type of event series | string |
| active | Active or inactive | boolean |
| inactivatedDate | Date at which EventSeries was marked as inactive | dateTime |
| note | Information about the event series | string |
| verified | DMO Flag for Backcompat withen importing | boolean |
| 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 |
TODO
The options for the tier property nor what each of those options represent have not yet been defined. The tier property has been included his as a placeholder.
Key
id
Relationships
The :EventSeries is generally at the top of a hierarchy. It can have multiple :EventInstance nodes as children. The HAS_EVENT_INSTANCE relationship connects the :EventSeries to the :EventInstance nodes.
The :EventSeries can have a BUYS_FOR relationship to a :Party node, and uses the standard relationship properties.
The HAS_EVENT_SERIES_TYPE relationship connects :EventSeries nodes to :EventSeriesType nodes.
Examples
MATCH (eventSeries:EventSeries)
WHERE eventSeries.type IN ["Music Festival", "Fair"]
RETURN eventSeries{.*}