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

project_user_members_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: 1d9497d65ce9d0b2cef6bd2f07ca69280f218913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query searchProjectMembers($fullPath: ID!, $search: String) {
  project(fullPath: $fullPath) {
    projectMembers(search: $search) {
      nodes {
        user {
          id
          name
          username
          avatarUrl
        }
      }
    }
  }
}