13 lines
306 B
GraphQL
13 lines
306 B
GraphQL
#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) {
|
|
runner {
|
|
...RunnerDetails
|
|
}
|
|
errors
|
|
}
|
|
}
|