Skip to content

Query project users from a group

We need to create a GraphQL query that allows us to retrieve a list of users who are members of all descendent projects at the group level. Currently, the query below only returns members of the group and sub-groups.

group(fullPath) {
  groupMembers(relations: [DIRECT, INHERITED, SHARED_FROM_GROUPS]) {
    ...
  }
}