debian-mirror-gitlab/app/assets/javascripts/runner/graphql/details/runner_update.mutation.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
431 B
GraphQL
Raw Normal View History

2022-05-07 20:08:51 +05:30
#import "ee_else_ce/runner/graphql/details/runner_details.fragment.graphql"
2021-09-04 01:27:46 +05:30
2021-12-11 22:18:48 +05:30
# Mutation for updates from the runner form, loads
# attributes shown in the runner details.
2021-09-04 01:27:46 +05:30
mutation runnerUpdate($input: RunnerUpdateInput!) {
runnerUpdate(input: $input) {
2022-01-26 12:08:38 +05:30
# We have an id in deep nested fragment
# eslint-disable-next-line @graphql-eslint/require-id-when-available
2021-09-04 01:27:46 +05:30
runner {
...RunnerDetails
}
errors
}
}