14 lines
309 B
GraphQL
14 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
|
||
|
}
|
||
|
}
|