summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/graphql/runner_toggle_active.mutation.graphql
blob: 9b15570dbc093bd393a79d0e46c0c206c1177923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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
  }
}