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

projects.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: 2e10b6cce3e4efd5c0b70be4dcb1b05ada23bd99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"
#import "../fragments/count.fragment.graphql"

query getProjectsCount($first: Int, $after: String) {
  projects: usageTrendsMeasurements(identifier: PROJECTS, first: $first, after: $after) {
    nodes {
      ...Count
    }
    pageInfo {
      ...PageInfo
    }
  }
}