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

Team connected to container

The TeamConnectedToContainer 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

Category

CategoryCanonical

Types

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

Forward Query

GraphQL
1
2
query TeamConnectedToContainer_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

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 (team:IdentityTeam {ari: $id})-[:team_connected_to_container]->(project:JiraProject) RETURN project",
  "params": {
    "id": "$id"
  }
}

Inverse Query

GraphQL
1
2
query TeamConnectedToContainer_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on TeamV2 {
                  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 (team:IdentityTeam)-[:team_connected_to_container]->(project:JiraProject {ari: $id}) RETURN team",
  "params": {
    "id": "$id"
  }
}

Metadata

Relationship Metadata

NameTypeProperties
createdFromAutocreateBoolean

Rate this page: