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

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

mutation runnerUpdate($input: RunnerUpdateInput!) {
  runnerUpdate(input: $input) {
    runner {
      ...RunnerDetails
    }
    errors
  }
}