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 owns Compass component

The AtlassianTeamOwnsCompassComponent relationship represents the link between a Teams team and a Compass component within the Teamwork Graph. It allows you to:

  • Retrieve components owned by a specific team
  • Find which team owns a component
  • Traverse and analyze team-component relationships

Relationship type: Canonical

From object typesTo object types
Teams Team - ati:cloud:teams:teamCompass Component - ati:cloud:compass:component
Identity Team - ati:cloud:identity:team

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 AtlassianTeamOwnsCompassComponent_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on CompassComponent {
                  id
                }
              }
            }
          }
        }
      }
    }
  }
}
Params
1
2
{
  "cypherQuery": "MATCH (team:TeamsTeam {ari: $id})-[:atlassian_team_owns_compass_component]->(component:CompassComponent) RETURN component",
  "params": {
    "id": "$id"
  }
}

Inverse query

GraphQL
1
2
query AtlassianTeamOwnsCompassComponent_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:TeamsTeam)-[:atlassian_team_owns_compass_component]->(component:CompassComponent {ari: $id}) RETURN team",
  "params": {
    "id": "$id"
  }
}

Rate this page: