12 lines
237 B
GraphQL
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
|
|
}
|
|
}
|