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