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: 84e0d6cc95c2dd54123987fb061a52bf6e848d89 (plain)
1
2
3
4
5
6
7
#import "~/runner/graphql/runner_details.fragment.graphql"

query getRunner($id: CiRunnerID!) {
  runner(id: $id) {
    ...RunnerDetails
  }
}