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-04-12 21:12:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-12 21:12:15 +0300
commitda59ce8b217f67707b391d9fb3503dbdf8c4e511 (patch)
tree6839f806745e333f25ddb29317aead689cced15b /app/assets/javascripts/graphql_shared
parent3df6bfc24c8877b9442d567378b8ebd8816cd443 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/graphql_shared')
-rw-r--r--app/assets/javascripts/graphql_shared/queries/users_search.query.graphql2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/graphql_shared/queries/users_search.query.graphql b/app/assets/javascripts/graphql_shared/queries/users_search.query.graphql
index aaaaf3485ad..3397a2529f1 100644
--- a/app/assets/javascripts/graphql_shared/queries/users_search.query.graphql
+++ b/app/assets/javascripts/graphql_shared/queries/users_search.query.graphql
@@ -2,7 +2,7 @@
query usersSearch($search: String!, $fullPath: ID!) {
workspace: project(fullPath: $fullPath) {
- users: projectMembers(search: $search) {
+ users: projectMembers(search: $search, relations: [DIRECT, INHERITED, INVITED_GROUPS]) {
nodes {
user {
...User