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

all_runners.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: 1160596aff3fd49e045fdd5d62eb8b1e36e022ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#import "~/runner/graphql/list/all_runners_connection.fragment.graphql"

query getAllRunners(
  $before: String
  $after: String
  $first: Int
  $last: Int
  $paused: Boolean
  $status: CiRunnerStatus
  $type: CiRunnerType
  $tagList: [String!]
  $search: String
  $sort: CiRunnerSort
) {
  runners(
    before: $before
    after: $after
    first: $first
    last: $last
    paused: $paused
    status: $status
    type: $type
    tagList: $tagList
    search: $search
    sort: $sort
  ) {
    ...AllRunnersConnection
  }
}