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

User reports issue

The UserReportsIssue relationship represents the link between an Identity user and a Jira issue they reported within the Teamwork Graph. It allows you to:

  • Track which users reported specific Jira issues
  • Find all Jira issues that a particular user reported
  • Traverse and analyze user-issue relationships

Relationship type: Canonical

From object typeTo object type
Identity user - ati:cloud:identity:userJira 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 UserReportsIssue_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 (user:IdentityUser {ari: $id})-[:user_reports_issue]->(issue:JiraIssue) RETURN issue",
 "params": {
  "id": "$id"
 }
}

Inverse query

GraphQL
1
2
query UserReportsIssue_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 AtlassianAccountUser {
           id
          }. on CustomerUser {
           id
          }. on AppUser {
           id
          }
         }
        }
       }. on GraphStoreCypherQueryV2AriNode {
        data {. on AtlassianAccountUser {
          id
         }. on CustomerUser {
          id
         }. on AppUser {
          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 (user:IdentityUser)-[:user_reports_issue]->(issue:JiraIssue {ari: $id}) RETURN user",
 "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

NameTypeDescription
dueDateLongDue date timestamp for the reported issue.
statusCategoryStatusCategory (Enum)Status category of the reported issue.

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.

StatusCategory

NameInternal NameIndexDescription
undefinedCATEGORY_UNDEFINED0Status category is undefined or not set.
newCATEGORY_TO_DO2Issue is new and in the To Do category.
doneCATEGORY_DONE3Issue has been completed and is done.
indeterminateCATEGORY_IN_PROGRESS4Issue is in progress or has an indeterminate status.

Rate this page: