debian-mirror-gitlab/app/assets/javascripts/analytics/usage_trends/graphql/queries/usage_count.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
355 B
GraphQL
Raw Normal View History

2022-06-21 17:19:12 +05:30
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
2021-01-29 00:20:46 +05:30
#import "../fragments/count.fragment.graphql"
query getCount($identifier: MeasurementIdentifier!, $first: Int, $after: String) {
2021-04-17 20:07:23 +05:30
usageTrendsMeasurements(identifier: $identifier, first: $first, after: $after) {
2021-01-29 00:20:46 +05:30
nodes {
...Count
}
pageInfo {
...PageInfo
}
}
}