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

users_search.query.graphql « queries « graphql_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aaaaf3485ad5cf6db4c070a8639435fba07e51cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "../fragments/user.fragment.graphql"

query usersSearch($search: String!, $fullPath: ID!) {
  workspace: project(fullPath: $fullPath) {
    users: projectMembers(search: $search) {
      nodes {
        user {
          ...User
        }
      }
    }
  }
}