gitlab-org--gitlab-foss/app/assets/javascripts/runner/graphql/edit/runner_update.mutation.graphql

14 lines
309 B
GraphQL

#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
}
}