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

Group can view Confluence space

The GroupCanViewConfluenceSpace relationship represents the link between an Identity group and a Confluence space within the Teamwork Graph. It allows you to:

  • Retrieve Confluence spaces viewable by a specific group
  • Find which groups can view a Confluence space
  • Traverse and analyze group-space-permission relationships

Category

CategoryCanonical

Types

From Object TypesTo Object Types
Identity Group - ati:cloud:identity:scoped-groupConfluence Space - ati:cloud:confluence:space
Identity Group - ati:cloud:identity:group

Cypher

Forward Query

GraphQL
1
2
query GroupCanViewConfluenceSpace_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on ConfluenceSpace {
                  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 (group:IdentityGroup {ari: $id})-[:group_can_view_confluence_space]->(space:ConfluenceSpace) RETURN space",
  "params": {
    "id": "$id"
  }
}

Inverse Query

GraphQL
1
2
query GroupCanViewConfluenceSpace_CypherQuery($cypherQuery: String!, $params: CypherRequestParams) {
  cypherQuery(query: $cypherQuery, params: $params) {
    edges {
      node {
        columns {
          value {
            ... on CypherQueryResultNode {
              id
              data {
                __typename
                ... on IdentityGroup {
                  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 (group:IdentityGroup)-[:group_can_view_confluence_space]->(space:ConfluenceSpace {ari: $id}) RETURN group",
  "params": {
    "id": "$id"
  }
}

Rate this page: