Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runner_toggle_paused.mutation.graphql « shared « graphql « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e862a20750f63826ca76465f1ded8eee60575e23 (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 runnerTogglePaused($input: RunnerUpdateInput!) {
  runnerUpdate(input: $input) {
    runner {
      id
      paused
    }
    errors
  }
}