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
Relationship types
Last updated Nov 25, 2025

Atlassian team links space entity

The AtlassianTeamLinksSpaceEntity relationship represents the link between an Identity team and a Jira project within the Teamwork Graph. It allows you to:

  • Retrieve containers connected to a specific team
  • Find which teams are connected to a container
  • Traverse and analyze team-container relationships

Relationship type: Canonical

From object typesTo object types
Identity Team - ati:cloud:identity:teamJira Project - ati:cloud:jira:project
Confluence Space - ati:cloud:confluence:space
Loom Space - ati:cloud:loom:space

Cypher

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.

Forward query

GraphQL
1
2
query 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
                }
              }
            }
          }
        }
      }
    }
  }
}
Params
1
2
{
  "cypherQuery": "MATCH (team:IdentityTeam {ari: $id})-[:atlassian_team_links_space_entity]->(project:JiraProject) RETURN project",
  "params": {
    "id": "$id"
  }
}

Inverse query

GraphQL
1
2
query AtlassianTeamLinksSpaceEntity_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on TeamV2 {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params
1
2
{
  "cypherQuery": "MATCH (team:IdentityTeam)-[:atlassian_team_links_space_entity]->(project:JiraProject {ari: $id}) RETURN team",
  "params": {
    "id": "$id"
  }
}

Metadata

Relationship Metadata

NameTypeProperties
createdFromAutocreateBoolean

Rate this page: