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

runner_actions_update.mutation.graphql « graphql « runner « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 547cc43907c701b8661d818db76428e2e3028f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "~/runner/graphql/runner_node.fragment.graphql"

# Mutation for updates within the runners list via action
# buttons (play, pause, ...), loads attributes shown in the
# runner list.

mutation runnerActionsUpdate($input: RunnerUpdateInput!) {
  runnerUpdate(input: $input) {
    runner {
      ...RunnerNode
    }
    errors
  }
}