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
Object types
Relationship types
Last updated Jan 8, 2026

Atlassian user assigned Jira work item

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. Do not install apps using this API in organizations with production data while this feature is in EAP.

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 `AtlassianUserAssignedJiraWorkItem` relationship represents the link between an Atlassian User and a Jira Work Item within the Teamwork Graph. It allows you to:
* View all Jira Work Items currently assigned to a specific user
* Identify who is responsible for resolving a particular Jira Work Item
* Traverse and analyze user-issue relationships

Relationship type: Canonical

From object typesTo object types
Atlassian User - ati:cloud:identity:userJira Work Item - ati:cloud:jira:issue

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.

GraphQL

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

Params

1
2
{
  "cypherQuery": "MATCH (user:AtlassianUser {ari: $id})-[:atlassian_user_assigned_jira_work_item]->(item:JiraWorkItem) RETURN item",
  "params": {
    "id": "$id"
  }
}

Metadata

Relationship Metadata

NameTypeProperties
creatorAriAri (Message)
statusCategoryStatusCategory (Enum)
issueTypeIssueType (Message)
dueDateLong
projectTypeProjectType (Enum)
actorAriAri (Message)

Nested Types

Ari

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

NameTypeProperties
valueString

IssueType

NameTypeProperties
hierarchyLevelHierarchyLevel (Enum)
issueTypeNameIssueTypeName (Enum)

StatusCategory

NameInternal NameIndex
not-setSTATUS_NOT_SET0
undefinedSTATUS_UNDEFINED1
newSTATUS_NEW2
doneSTATUS_DONE3
indeterminateSTATUS_INDETERMINATE4

ProjectType

NameInternal NameIndex
not-setTYPE_PROJECT_TYPE_NOT_SET0
service_deskTYPE_PROJECT_TYPE_SERVICE_DESK1
businessTYPE_PROJECT_TYPE_BUSINESS2
softwareTYPE_PROJECT_TYPE_SOFTWARE3
product_discoveryTYPE_PROJECT_TYPE_PRODUCT_DISCOVERY4
customer_serviceTYPE_PROJECT_TYPE_CUSTOMER_SERVICE5
opsTYPE_PROJECT_TYPE_OPS6

HierarchyLevel

NameInternal NameIndex
undefinedTYPE_HIERARCHY_LEVEL_NOT_SET0
subtaskTYPE_HIERARCHY_LEVEL_SUBTASK1
standardTYPE_HIERARCHY_LEVEL_STANDARD2
epicTYPE_HIERARCHY_LEVEL_EPIC3
initiativeTYPE_HIERARCHY_LEVEL_INITIATIVE4

IssueTypeName

NameInternal NameIndex
not-setTYPE_UNKNOWN0
AlertsTYPE_ALERTS2
BugTYPE_BUG4
EpicTYPE_EPIC10
TaskTYPE_TASK20
StoryTYPE_STORY30
Sub-taskTYPE_SUBTASK40
Sub-TaskTYPE_SUBTASK_150
SubtaskTYPE_SUBTASK_260
SUBTASKTYPE_SUBTASK_370

Rate this page: