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

runner_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: 8d1b75828beb8c90529d73b9e1b45621d356b3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "ee_else_ce/runner/graphql/runner_details.fragment.graphql"

# Mutation for updates from the runner form, loads
# attributes shown in the runner details.

mutation runnerUpdate($input: RunnerUpdateInput!) {
  runnerUpdate(input: $input) {
    # We have an id in deep nested fragment
    # eslint-disable-next-line @graphql-eslint/require-id-when-available
    runner {
      ...RunnerDetails
    }
    errors
  }
}