The Teamwork Graph API is coming soon. The object and relationship types documented here are indicative of what will be available in the Graph via the Teamwork Graph API. Please note that relationships, objects, 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 AtlassianTeamLinksSpaceEntity relationship represents the link between an Identity team and a Jira project within the Teamwork Graph. It allows you to:
Relationship type: Canonical
| From object types | To object types |
|---|---|
Identity Team - ati:cloud:identity:team | Jira Project - ati:cloud:jira:project |
Confluence Space - ati:cloud:confluence:space | |
Loom Space - ati:cloud:loom:space |
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 2query AtlassianTeamLinksSpaceEntity_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) { cypherQuery(query: $cypherQuery, params: $params) { edges { node { columns { value { ... on CypherQueryResultNode { id data { __typename ... on JiraProject { id } ... on ConfluenceSpace { id } ... on LoomSpace { id } } } } } } } } }
1 2{ "cypherQuery": "MATCH (team:IdentityTeam {ari: $id})-[:atlassian_team_links_space_entity]->(project:JiraProject) RETURN project", "params": { "id": "$id" } }
1 2query AtlassianTeamLinksSpaceEntity_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) { cypherQuery(query: $cypherQuery, params: $params) { edges { node { columns { value { ... on CypherQueryResultNode { id data { __typename ... on TeamV2 { id } } } } } } } } }
1 2{ "cypherQuery": "MATCH (team:IdentityTeam)-[:atlassian_team_links_space_entity]->(project:JiraProject {ari: $id}) RETURN team", "params": { "id": "$id" } }
| Name | Type | Properties |
|---|---|---|
createdFromAutocreate | Boolean |
Rate this page: