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

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

14 lines
309 B
GraphQL
Raw Normal View History

2022-07-16 23:28:13 +05:30
#import "ee_else_ce/runner/graphql/edit/runner_fields.fragment.graphql"
# Mutation for updates from the runner form, loads
# attributes shown in the runner details.
mutation runnerUpdate($input: RunnerUpdateInput!) {
runnerUpdate(input: $input) {
runner {
...RunnerFields
}
errors
}
}