14 lines
338 B
GraphQL
14 lines
338 B
GraphQL
#import "~/runner/graphql/runner_node.fragment.graphql"
|
|
|
|
# Mutation for updates within the runners list via action
|
|
# buttons (play, pause, ...), loads attributes shown in the
|
|
# runner list.
|
|
|
|
mutation runnerActionsUpdate($input: RunnerUpdateInput!) {
|
|
runnerUpdate(input: $input) {
|
|
runner {
|
|
...RunnerNode
|
|
}
|
|
errors
|
|
}
|
|
}
|