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 Oct 29, 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

Relationship type: Canonical

From object typeTo object type
Jira issue - ati:cloud:jira:issueJira project - ati:cloud:jira:project
Jira issue - ati:cloud:jira:issue

Cypher

We recommend using parameterized Cypher queries rather than placing parameters directly in the query string. This helps improve performance.

Forward query

GraphQL
1
2
query JcsIssueAssociatedSupportEscalation_CypherQuery($cypherQuery: String!, $params: JSON!) {
 graphStore @optIn(to: ["GraphStore", "GraphStoreCypherQueryV2"]) {
  cypherQueryV2(query: $cypherQuery, params: $params) {
   edges {
    node {
     columns {
      key
      value {. on GraphStoreCypherQueryV2NodeList {
        nodes {
         data {. on JiraProject {
           id
          }. on JiraIssue {
           id
          }
         }
        }
       }. on GraphStoreCypherQueryV2AriNode {
        data {. on JiraProject {
          id
         }. on JiraIssue {
          id
         }
        }
       }. on GraphStoreCypherQueryV2BooleanObject {
        bool_val: value
       }. on GraphStoreCypherQueryV2IntObject {
        int_val: value
       }. on GraphStoreCypherQueryV2FloatObject {
        float_val: value
       }. on GraphStoreCypherQueryV2StringObject {
        str_val: value
       }
      }
     }
    }
   }
  }
 }
}
Params
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: JSON!) {
 graphStore @optIn(to: ["GraphStore", "GraphStoreCypherQueryV2"]) {
  cypherQueryV2(query: $cypherQuery, params: $params) {
   edges {
    node {
     columns {
      key
      value {. on GraphStoreCypherQueryV2NodeList {
        nodes {
         data {. on JiraIssue {
           id
          }
         }
        }
       }. on GraphStoreCypherQueryV2AriNode {
        data {. on JiraIssue {
          id
         }
        }
       }. on GraphStoreCypherQueryV2BooleanObject {
        bool_val: value
       }. on GraphStoreCypherQueryV2IntObject {
        int_val: value
       }. on GraphStoreCypherQueryV2FloatObject {
        float_val: value
       }. on GraphStoreCypherQueryV2StringObject {
        str_val: value
       }
      }
     }
    }
   }
  }
 }
}
Params
1
2
{
 "cypherQuery": "MATCH (issue:JiraIssue)-[:jcs_issue_associated_support_escalation]->(project:JiraProject {ari: $id}) RETURN issue",
 "params": {
  "id": "$id"
 }
}

Metadata

Relationship metadata

Ari

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

NameTypeDescription
valueStringThe ARI string value identifying the user or resource.

EscalationStatus

NameInternal NameIndexDescription
openOPEN0Escalation is newly created and awaiting review.
acceptedACCEPTED100Escalation has been accepted and is being worked on.
rejectedREJECTED110Escalation has been rejected and will not be worked on.

EscalationLinkType

NameInternal NameIndexDescription
not_setLINK_NOT_SET0No link type has been specified for this escalation.
new-work-itemLINK_TO_NEW_WORK_ITEM100Escalation is linked to a newly created work item.
existing-work-itemLINK_TO_EXISTING_WORK_ITEM110Escalation is linked to an existing work item.

Rate this page: