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

get_runner.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: 59c55eae06024cfe50181c02130a01fa61c9ad05 (plain)
1
2
3
4
5
6
7
8
9
#import "ee_else_ce/runner/graphql/runner_details.fragment.graphql"

query getRunner($id: CiRunnerID!) {
  # We have an id in deeply nested fragment
  # eslint-disable-next-line @graphql-eslint/require-id-when-available
  runner(id: $id) {
    ...RunnerDetails
  }
}