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 Nov 11, 2025

Content referenced entity

The ContentReferencedEntity relationship represents the link between content items and entities they reference or mention within the Teamwork Graph. It allows you to:

  • Retrieve all entities referenced or mentioned within specific content
  • Find which content items reference or mention a specific entity
  • Track cross-references and mentions across different content types

Category

CategoryCanonical

TTL

730 days

The TTL (Time To Live) specifies the retention period for relationship data, determining how far back in time the relationship remains queryable.

Types

From Object TypesTo Object Types
Jira Issue - ati:cloud:jira:issueJira Issue - ati:cloud:jira:issue
Confluence Page - ati:cloud:confluence:pageConfluence Page - ati:cloud:confluence:page
Confluence Blogpost - ati:cloud:confluence:blogpostConfluence Blogpost - ati:cloud:confluence:blogpost
Jira IssueComment - ati:cloud:jira:issue-commentCompass Component - ati:cloud:compass:component
External Pull Request - ati:cloud:jira:pull-requestGoogle Document - ati:cloud:google:document
External Pull Request - ati:cloud:graph:pull-requestGoogle Document - ati:third-party:google:document
External Branch - ati:cloud:jira:branchGoogle Spreadsheet - ati:cloud:google:spreadsheet
External Branch - ati:cloud:graph:branchGoogle Spreadsheet - ati:third-party:google:spreadsheet
External Build - ati:cloud:jira:buildGoogle Form - ati:cloud:google:form
External Build - ati:cloud:graph:buildGoogle Form - ati:third-party:google:form
External Commit - ati:cloud:jira:commitGoogle Presentation - ati:cloud:google:presentation
External Commit - ati:cloud:graph:commitGoogle Presentation - ati:third-party:google:presentation
External Deployment - ati:cloud:jira:deploymentFigma File - ati:cloud:figma:file
External Deployment - ati:cloud:graph:deploymentFigma File - ati:third-party:figma:file
External Repository - ati:cloud:jira:repositoryThird Party Document - ati:third-party:airtable.airtable:document
External Repository - ati:cloud:graph:repositoryThird Party Document - ati:third-party:box.box:document
External Vulnerability - ati:cloud:jira:vulnerabilityThird Party Document - ati:third-party:docusign.docusign:document
External Vulnerability - ati:cloud:graph:vulnerabilityThird Party Document - ati:third-party:google.google-drive:document
External Comment - ati:cloud:graph:commentThird Party Document - ati:third-party:google.google-drive-rsl:document
Third Party Document - ati:third-party:google.google-drive-lite:document
Third Party Document - ati:third-party:microsoft.onedrive:document
Third Party Document - ati:third-party:microsoft.sharepoint:document
Third Party Document - ati:third-party:monday.monday:document
Third Party Document - ati:third-party:notion.notion:document
Third Party Document - ati:third-party:smartsheet.smartsheet:document
Third Party Message - ati:third-party:slack.slack:message
Third Party Message - ati:third-party:microsoft.teams:message
Third Party Conversation - ati:third-party:slack.slack:conversation
Third Party Conversation - ati:third-party:microsoft.teams:conversation
Third Party Branch - ati:third-party:github.github:branch
Third Party Build - ati:third-party:github.github:build
Third Party Commit - ati:third-party:github.github:commit
Third Party Deployment - ati:third-party:github.github:deployment
Third Party Pull Request - ati:third-party:github.github:pull-request
Third Party Repository - ati:third-party:github.github:repository
Third Party Vulnerability - ati:third-party:github.github:vulnerability
Loom Space - ati:cloud:loom:space
Loom Video - ati:cloud:loom:video

Cypher

Forward Query

GraphQL
1
2
query ContentReferencedEntity_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on JiraIssue {
                  id
                }
                ... on ConfluencePage {
                  id
                }
                ... on ConfluenceBlogPost {
                  id
                }
                ... on CompassComponent {
                  id
                }
                ... on LoomSpace {
                  id
                }
                ... on LoomVideo {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params

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.

1
2
{
  "cypherQuery": "MATCH (issue:JiraIssue {ari: $id})-[:content_referenced_entity]->(issue_1:JiraIssue) RETURN issue_1",
  "params": {
    "id": "$id"
  }
}

Inverse Query

GraphQL
1
2
query ContentReferencedEntity_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on JiraIssue {
                  id
                }
                ... on ConfluencePage {
                  id
                }
                ... on ConfluenceBlogPost {
                  id
                }
                ... on JiraPlatformComment {
                  id
                }
                ... on JiraServiceManagementComment {
                  id
                }
                ... on DevOpsPullRequestDetails {
                  id
                }
                ... on ExternalPullRequest {
                  id
                }
                ... on ExternalBranch {
                  id
                }
                ... on ExternalBuildInfo {
                  id
                }
                ... on ExternalCommit {
                  id
                }
                ... on DeploymentSummary {
                  id
                }
                ... on ExternalDeployment {
                  id
                }
                ... on DevOpsRepository {
                  id
                }
                ... on ExternalRepository {
                  id
                }
                ... on DevOpsSecurityVulnerabilityDetails {
                  id
                }
                ... on ExternalVulnerability {
                  id
                }
                ... on ExternalComment {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params

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.

1
2
{
  "cypherQuery": "MATCH (issue:JiraIssue)-[:content_referenced_entity]->(issue_1:JiraIssue {ari: $id}) RETURN issue",
  "params": {
    "id": "$id"
  }
}

Rate this page: