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

get_group_runners_count.query.graphql « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 554eb09e372a179047daa0fbb4df7dd5a595fac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query getGroupRunnersCount(
  $groupFullPath: ID!
  $status: CiRunnerStatus
  $type: CiRunnerType
  $tagList: [String!]
  $search: String
) {
  group(fullPath: $groupFullPath) {
    id # Apollo required
    runners(
      membership: DESCENDANTS
      status: $status
      type: $type
      tagList: $tagList
      search: $search
    ) {
      count
    }
  }
}