From 559b1da28e46a9969315beb11ee2d2056f75b06d Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 21 Oct 2022 12:11:29 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- .../ci/runner/graphql/edit/runner_update.mutation.graphql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/assets/javascripts/ci/runner/graphql/edit/runner_update.mutation.graphql (limited to 'app/assets/javascripts/ci/runner/graphql/edit/runner_update.mutation.graphql') diff --git a/app/assets/javascripts/ci/runner/graphql/edit/runner_update.mutation.graphql b/app/assets/javascripts/ci/runner/graphql/edit/runner_update.mutation.graphql new file mode 100644 index 00000000000..9469078c317 --- /dev/null +++ b/app/assets/javascripts/ci/runner/graphql/edit/runner_update.mutation.graphql @@ -0,0 +1,13 @@ +#import "ee_else_ce/ci/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 + } +} -- cgit v1.2.3