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
Relationship types
Last updated Nov 25, 2025

Issue has assignee

Links Jira issues to their assigned users, establishing responsibility and ownership for issue resolution Relationship type: Canonical

From object typesTo object types
Jira Issue - ati:cloud:jira:issueIdentity User - ati:cloud:identity:user

Cypher

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.

Forward query

GraphQL
1
2
query IssueHasAssignee_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on AtlassianAccountUser {
                  id
                }
                ... on CustomerUser {
                  id
                }
                ... on AppUser {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params
1
2
{
  "cypherQuery": "MATCH (issue:JiraIssue {ari: $id})-[:issue_has_assignee]->(user:IdentityUser) RETURN user",
  "params": {
    "id": "$id"
  }
}

Inverse query

GraphQL
1
2
query IssueHasAssignee_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on JiraIssue {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params
1
2
{
  "cypherQuery": "MATCH (issue:JiraIssue)-[:issue_has_assignee]->(user:IdentityUser {ari: $id}) RETURN issue",
  "params": {
    "id": "$id"
  }
}

Metadata

This relationship is not indexed, you will not be able to filter by this metadata when querying the relationship.

From Metadata

To Metadata

Relationship Metadata

NameTypeProperties
dueDateLong
statusCategoryStatusCategory (Enum)

Nested Types

Ari

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

NameTypeProperties
valueString

StatusCategory

NameInternal NameIndex
undefinedCATEGORY_UNDEFINED0
newCATEGORY_TO_DO2
doneCATEGORY_DONE3
indeterminateCATEGORY_IN_PROGRESS4

Rate this page: