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

users_search.query.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca016495d7936607c894ff463f4aa434c9daeb24 (plain)
1
2
3
4
5
6
7
8
9
10
11
query usersSearch($search: String!) {
  users(search: $search) {
    nodes {
      username
      name
      webUrl
      avatarUrl
      id
    }
  }
}