The Teamwork Graph API is coming soon. The relationship types documented here are indicative of what will be available in the Graph via the Teamwork Graph API. Please note that relationships, their properties, and functionality may change before and during the Early Access Program.
Interested in early access? Express your interest in joining the EAP
The ContentReferencedEntity relationship represents the link between content items and entities they reference or mention within the Teamwork Graph. It allows you to:
| Category | Canonical |
The TTL (Time To Live) specifies the retention period for relationship data, determining how far back in time the relationship remains queryable.
| From Object Types | To Object Types |
|---|---|
Jira Issue - ati:cloud:jira:issue | Jira Issue - ati:cloud:jira:issue |
Confluence Page - ati:cloud:confluence:page | Confluence Page - ati:cloud:confluence:page |
Confluence Blogpost - ati:cloud:confluence:blogpost | Confluence Blogpost - ati:cloud:confluence:blogpost |
Jira IssueComment - ati:cloud:jira:issue-comment | Compass Component - ati:cloud:compass:component |
External Pull Request - ati:cloud:jira:pull-request | Google Document - ati:cloud:google:document |
External Pull Request - ati:cloud:graph:pull-request | Google Document - ati:third-party:google:document |
External Branch - ati:cloud:jira:branch | Google Spreadsheet - ati:cloud:google:spreadsheet |
External Branch - ati:cloud:graph:branch | Google Spreadsheet - ati:third-party:google:spreadsheet |
External Build - ati:cloud:jira:build | Google Form - ati:cloud:google:form |
External Build - ati:cloud:graph:build | Google Form - ati:third-party:google:form |
External Commit - ati:cloud:jira:commit | Google Presentation - ati:cloud:google:presentation |
External Commit - ati:cloud:graph:commit | Google Presentation - ati:third-party:google:presentation |
External Deployment - ati:cloud:jira:deployment | Figma File - ati:cloud:figma:file |
External Deployment - ati:cloud:graph:deployment | Figma File - ati:third-party:figma:file |
External Repository - ati:cloud:jira:repository | Third Party Document - ati:third-party:airtable.airtable:document |
External Repository - ati:cloud:graph:repository | Third Party Document - ati:third-party:box.box:document |
External Vulnerability - ati:cloud:jira:vulnerability | Third Party Document - ati:third-party:docusign.docusign:document |
External Vulnerability - ati:cloud:graph:vulnerability | Third Party Document - ati:third-party:google.google-drive:document |
External Comment - ati:cloud:graph:comment | Third 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 |
1 2query 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 } } } } } } } } }
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" } }
1 2query 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 } } } } } } } } }
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: