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: 82591b88d3e8a53f45485f4022a372da29c338bd (plain)
1
2
3
4
5
6
7
8
9
10
11
query getAllRunnersCount(
  $paused: Boolean
  $status: CiRunnerStatus
  $type: CiRunnerType
  $tagList: [String!]
  $search: String
) {
  runners(paused: $paused, status: $status, type: $type, tagList: $tagList, search: $search) {
    count
  }
}