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

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