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

admin_runners_count.query.graphql « list « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dd258a3524853a0963d58f3772c7b72407fa1d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
query getRunnersCount(
  $paused: Boolean
  $status: CiRunnerStatus
  $type: CiRunnerType
  $tagList: [String!]
  $search: String
) {
  runners(paused: $paused, status: $status, type: $type, tagList: $tagList, search: $search) {
    count
  }
}