Developer
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Last updated Nov 11, 2025

JCS issue associated support escalation

The JcsIssueAssociatedSupportEscalation relationship represents the link between a JCS issue and its associated support escalation within the Teamwork Graph. It allows you to:

  • Retrieve support escalations for a specific JCS issue
  • Find which JCS issues are associated with a support escalation
  • Traverse and analyze jcs-escalation relationships

Category

CategoryCanonical

Types

From Object TypesTo Object Types
Jira Issue - ati:cloud:jira:issueJira Project - ati:cloud:jira:project
Jira Issue - ati:cloud:jira:issue

Cypher

Forward Query

GraphQL
1
2
query JcsIssueAssociatedSupportEscalation_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on JiraProject {
                  id
                }
                ... on JiraIssue {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params

Note

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.

1
2
{
  "cypherQuery": "MATCH (issue:JiraIssue {ari: $id})-[:jcs_issue_associated_support_escalation]->(project:JiraProject) RETURN project",
  "params": {
    "id": "$id"
  }
}

Inverse Query

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

Note

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.

1
2
{
  "cypherQuery": "MATCH (issue:JiraIssue)-[:jcs_issue_associated_support_escalation]->(project:JiraProject {ari: $id}) RETURN issue",
  "params": {
    "id": "$id"
  }
}

Metadata

Relationship Metadata

Nested Types

Ari

When filtering by ARI in GraphQL, it will behave as a String rather than a message as shown below.

NameTypeProperties
valueString

EscalationStatus

NameInternal NameIndex
openOPEN0
acceptedACCEPTED100
rejectedREJECTED110

EscalationLinkType

NameInternal NameIndex
not_setLINK_NOT_SET0
new-work-itemLINK_TO_NEW_WORK_ITEM100
existing-work-itemLINK_TO_EXISTING_WORK_ITEM110

Rate this page: