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

get_users_group_counts.query.graphql « queries « graphql « users « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0d8e199f16e50f4aa21782e6c57dc22667e73c76 (plain)
1
2
3
4
5
6
7
8
query getUsersGroupCounts($usernames: [String!]) {
  users(usernames: $usernames) {
    nodes {
      id
      groupCount
    }
  }
}