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 Oct 29, 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

Relationship type: Canonical

From object typeTo object type
Identity team - ati:cloud:identity:teamJira project - ati:cloud:jira:project

Cypher

We recommend using parameterized Cypher queries rather than placing parameters directly in the query string. This helps improve performance.

Forward query

GraphQL
1
2
query TeamConnectedToContainer_CypherQuery($cypherQuery: String!, $params: JSON!) {
 graphStore @optIn(to: ["GraphStore", "GraphStoreCypherQueryV2"]) {
  cypherQueryV2(query: $cypherQuery, params: $params) {
   edges {
    node {
     columns {
      key
      value {. on GraphStoreCypherQueryV2NodeList {
        nodes {
         data {. on JiraProject {
           id
          }. on ConfluenceSpace {
           id
          }. on LoomSpace {
           id
          }
         }
        }
       }. on GraphStoreCypherQueryV2AriNode {
        data {. on JiraProject {
          id
         }. on ConfluenceSpace {
          id
         }. on LoomSpace {
          id
         }
        }
       }. on GraphStoreCypherQueryV2BooleanObject {
        bool_val: value
       }. on GraphStoreCypherQueryV2IntObject {
        int_val: value
       }. on GraphStoreCypherQueryV2FloatObject {
        float_val: value
       }. on GraphStoreCypherQueryV2StringObject {
        str_val: value
       }
      }
     }
    }
   }
  }
 }
}
Params
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: JSON!) {
 graphStore @optIn(to: ["GraphStore", "GraphStoreCypherQueryV2"]) {
  cypherQueryV2(query: $cypherQuery, params: $params) {
   edges {
    node {
     columns {
      key
      value {. on GraphStoreCypherQueryV2NodeList {
        nodes {
         data {. on TeamV2 {
           id
          }
         }
        }
       }. on GraphStoreCypherQueryV2AriNode {
        data {. on TeamV2 {
          id
         }
        }
       }. on GraphStoreCypherQueryV2BooleanObject {
        bool_val: value
       }. on GraphStoreCypherQueryV2IntObject {
        int_val: value
       }. on GraphStoreCypherQueryV2FloatObject {
        float_val: value
       }. on GraphStoreCypherQueryV2StringObject {
        str_val: value
       }
      }
     }
    }
   }
  }
 }
}
Params
1
2
{
 "cypherQuery": "MATCH (team:IdentityTeam)-[:team_connected_to_container]->(project:JiraProject {ari: $id}) RETURN team",
 "params": {
  "id": "$id"
 }
}

Metadata

Relationship metadata

NameTypeDescription
createdFromAutocreateBooleanIndicates whether this team-container connection was automatically created by the system.

Rate this page: