Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-17 09:12:07 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-17 09:12:07 +0300
commit8624e54ae69729abf8664f1f1a57e90ee9ecab1a (patch)
tree5a582393864f83a1ae05b8c3cdcbc7e4de57f5b2 /app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql
parentf8edb3a740b9ba434489a50b69c2e765cecb24b0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql')
-rw-r--r--app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql b/app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql
index 3448aa72964..c5f99a1657e 100644
--- a/app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql
+++ b/app/assets/javascripts/graphql_shared/queries/group_users_search.query.graphql
@@ -4,7 +4,7 @@
query groupUsersSearch($search: String!, $fullPath: ID!) {
workspace: group(fullPath: $fullPath) {
id
- users: groupMembers(search: $search, relations: [DIRECT, INHERITED]) {
+ users: groupMembers(search: $search, relations: [DIRECT, DESCENDANTS, INHERITED]) {
nodes {
user {
...User