Developer
News and Updates
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 Mar 3, 2026

Atlassian user dismissed Jira for you recommendation entity

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 unless you have an approved path to production.

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.

This relationship represents the link between an IdentityUser and a recommendation they dismissed on the Jira For You page.
Category of each dismissal is modelled in metadata as a list to allow users to dismiss the same entity (e.g. JiraIssue) across multiple categories independently.

Relationship type: Activity

From object typesTo object types
Atlassian user - ati:cloud:identity:userAtlassian team - ati:cloud:identity:team
External pull request - ati:cloud:jira:pull-request, ati:cloud:graph:pull-request
Jira space - ati:cloud:jira:project
Jira work item - ati:cloud:jira:issue
Jira work item comment - ati:cloud:jira:issue-comment

Cypher

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 AtlassianUserDismissedJiraForYouRecommendationEntity_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on JiraWorkItem {
                  id
                }
                ... on JiraSpace {
                  id
                }
                ... on JiraWorkItemComment {
                  id
                }
                ... on AtlassianTeam {
                  id
                }
                ... on ExternalPullRequest {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}

Params

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

Metadata

Relationship Metadata

Nested Types

CategoryDismissal

NameTypeProperties
categoryRecommendationCategory (Enum)

RecommendationCategory

NameInternal NameIndex
NOT_SETCATEGORY_NOT_SET0
TEAM_INVITER_CONTEXTCATEGORY_TEAM_INVITER_CONTEXT1
TEAM_POPULARITYCATEGORY_TEAM_POPULARITY2
TEAM_COLLABORATORS_JOINCATEGORY_TEAM_COLLABORATORS_JOIN3
TEAM_COLLABORATORS_CREATECATEGORY_TEAM_COLLABORATORS_CREATE4
PROJECT_INVITER_CONTEXTCATEGORY_PROJECT_INVITER_CONTEXT5
PROJECT_POPULARITYCATEGORY_PROJECT_POPULARITY6
ISSUE_DUE_SOONCATEGORY_ISSUE_DUE_SOON7
COMMENT_MENTIONCATEGORY_COMMENT_MENTION8
COMMENT_REPLYCATEGORY_COMMENT_REPLY9
COMMENT_ASSIGNEDCATEGORY_COMMENT_ASSIGNED10
ISSUE_APPROVALCATEGORY_ISSUE_APPROVAL11
PR_REVIEWCATEGORY_PR_REVIEW12

Rate this page: