Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-04-22 18:09:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-22 18:09:52 +0300
commit4136fdda4ca0ec8de51c17efe48425ac35dee590 (patch)
tree79fcdeee7ebc77eb39dd05872b93bdb1a4dcc657 /app/assets/javascripts/runner
parentae567e129f79b561404fee0f99082975a8ece087 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/runner')
-rw-r--r--app/assets/javascripts/runner/graphql/details/runner.query.graphql2
-rw-r--r--app/assets/javascripts/runner/graphql/details/runner_update.mutation.graphql2
2 files changed, 0 insertions, 4 deletions
diff --git a/app/assets/javascripts/runner/graphql/details/runner.query.graphql b/app/assets/javascripts/runner/graphql/details/runner.query.graphql
index 4792a186160..df6ce19fd09 100644
--- a/app/assets/javascripts/runner/graphql/details/runner.query.graphql
+++ b/app/assets/javascripts/runner/graphql/details/runner.query.graphql
@@ -1,8 +1,6 @@
#import "ee_else_ce/runner/graphql/details/runner_details.fragment.graphql"
query getRunner($id: CiRunnerID!) {
- # We have an id in deeply nested fragment
- # eslint-disable-next-line @graphql-eslint/require-id-when-available
runner(id: $id) {
...RunnerDetails
}
diff --git a/app/assets/javascripts/runner/graphql/details/runner_update.mutation.graphql b/app/assets/javascripts/runner/graphql/details/runner_update.mutation.graphql
index e4bf51e2c30..352b95c1a39 100644
--- a/app/assets/javascripts/runner/graphql/details/runner_update.mutation.graphql
+++ b/app/assets/javascripts/runner/graphql/details/runner_update.mutation.graphql
@@ -5,8 +5,6 @@
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
}