gitlab-org--gitlab-foss/app/assets/javascripts/runner/graphql/shared/runner_toggle_active.mutati...

13 lines
237 B
GraphQL

# Mutation executed for the pause/resume button in the
# runner list and details views.
mutation runnerToggleActive($input: RunnerUpdateInput!) {
runnerUpdate(input: $input) {
runner {
id
active
}
errors
}
}