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

users.query.graphql « queries « graphql « usage_trends « analytics « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7638458b034f8201298bef9335e1cc6f0b9a835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
#import "../fragments/count.fragment.graphql"

query getUsersCount($first: Int, $after: String) {
  users: usageTrendsMeasurements(identifier: USERS, first: $first, after: $after) {
    nodes {
      ...Count
    }
    pageInfo {
      ...PageInfo
    }
  }
}