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

14 lines
306 B
GraphQL
Raw Normal View History

2021-09-30 23:02:18 +05:30
#import "ee_else_ce/runner/graphql/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) {
runner {
...RunnerDetails
}
errors
}
}