summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/graphql/runner_update.mutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/runner/graphql/runner_update.mutation.graphql')
-rw-r--r--app/assets/javascripts/runner/graphql/runner_update.mutation.graphql15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/assets/javascripts/runner/graphql/runner_update.mutation.graphql b/app/assets/javascripts/runner/graphql/runner_update.mutation.graphql
deleted file mode 100644
index 8d1b75828be..00000000000
--- a/app/assets/javascripts/runner/graphql/runner_update.mutation.graphql
+++ /dev/null
@@ -1,15 +0,0 @@
-#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) {
- # We have an id in deep nested fragment
- # eslint-disable-next-line @graphql-eslint/require-id-when-available
- runner {
- ...RunnerDetails
- }
- errors
- }
-}