summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci/runner/graphql/edit/runner_update.mutation.graphql
blob: 9469078c31754ebcb9a8cfcb2407fff89152111f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "ee_else_ce/ci/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
  }
}