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

runner_toggle_active.mutation.graphql « shared « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
  }
}