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: d04a49f8b3a7a2032c966d4ad6cd719ae4a34689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "../fragments/user.fragment.graphql"
#import "~/graphql_shared/fragments/user_availability.fragment.graphql"

query projectUsersSearch($search: String!, $fullPath: ID!) {
  workspace: project(fullPath: $fullPath) {
    users: projectMembers(search: $search, relations: [DIRECT, INHERITED, INVITED_GROUPS]) {
      nodes {
        user {
          ...User
          ...UserAvailability
        }
      }
    }
  }
}