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

all_runners_count.query.graphql « list « graphql « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18f587495b0fdfa0268b939745353ecb28e18aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query getAllRunnersCount(
  $paused: Boolean
  $status: CiRunnerStatus
  $type: CiRunnerType
  $tagList: [String!]
  $search: String
  $versionPrefix: String
) {
  runners(
    paused: $paused
    status: $status
    type: $type
    tagList: $tagList
    search: $search
    versionPrefix: $versionPrefix
  ) {
    count
  }
}