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

usage_count.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: f9311626cc363adbdf5c984ae2d7cd45ef7fd094 (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 getCount($identifier: MeasurementIdentifier!, $first: Int, $after: String) {
  usageTrendsMeasurements(identifier: $identifier, first: $first, after: $after) {
    nodes {
      ...Count
    }
    pageInfo {
      ...PageInfo
    }
  }
}