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

runner_update.mutation.graphql « edit « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8694a51b5a4a9b3cba94b4259525cae25d4b5dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "ee_else_ce/runner/graphql/edit/runner_fields.fragment.graphql"

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

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