Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Object types
Relationship types
Last updated Apr 1, 2026

External calendar event has child external calendar event

The Teamwork Graph API is available through Forge's Early Access Program (EAP).

EAPs are offered to selected users for testing and feedback purposes. These features are unsupported and are subject to change without notice.

You must only install apps that call the Teamwork Graph API in test organizations. Apps calling the Teamwork Graph API require the read:graph:jiraor read:graph:confluence scope, which provides access to Teamwork Graph data across your entire organization. While apps still respect end-user permissions, this scope may grant access to sensitive information. For safety, only install these apps in organizations with test data unless you have an approved path to production.

Additionally, this EAP has significant limitations. To review the full list of limitations, see Limitations and considerations.

You must be part of this EAP in order to use the Teamwork Graph API. Express interest in joining through this form.

The ExternalCalendarEventHasChildExternalCalendarEvent relationship represents the hierarchical link between a parent calendar event (a recurring meeting series) and its child calendar events (individual occurrences). It allows you to:

  • Retrieve all individual occurrences of a recurring meeting
  • Find the parent recurring meeting of a specific occurrence
  • Traverse and analyze recurring meeting hierarchies in the Teamwork Graph

Relationship type: Canonical

From object typesTo object types
External calendar event - ati:cloud:graph:calendar-eventExternal calendar event - ati:cloud:graph:calendar-event

Cypher

We recommend sending parameterized Cypher queries as below instead of embedding the parameters directly in the query string. This approach will help ensure better performance.

GraphQL

1
2
query ExternalCalendarEventHasChildExternalCalendarEvent_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on ExternalCalendarEvent {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}

Params

1
2
{
  "cypherQuery": "MATCH (event:ExternalCalendarEvent {ari: $id})-[:external_calendar_event_has_child_external_calendar_event]->(event_1:ExternalCalendarEvent) RETURN event_1",
  "params": {
    "id": "$id"
  }
}

Rate this page: