debian-mirror-gitlab/app/assets/javascripts/runner/graphql/shared/runner_toggle_active.mutation.graphql
2022-05-07 20:08:51 +05:30

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