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

# Mutation for updates from the runner form, loads
# attributes shown in the runner details.

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