debian-mirror-gitlab/app/assets/javascripts/runner/graphql/edit/runner_update.mutation.graphql
2022-07-16 19:58:13 +02:00

13 lines
309 B
GraphQL

#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
}
}