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

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

query projectAutocompleteUsersSearch($search: String!, $fullPath: ID!) {
  workspace: project(fullPath: $fullPath) {
    id
    users: autocompleteUsers(search: $search) {
      ...User
      ...UserAvailability
    }
  }
}