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:
Diffstat (limited to 'app/assets/javascripts/ci_variable_list/graphql/mutations/project_add_variable.mutation.graphql')
-rw-r--r--app/assets/javascripts/ci_variable_list/graphql/mutations/project_add_variable.mutation.graphql26
1 files changed, 0 insertions, 26 deletions
diff --git a/app/assets/javascripts/ci_variable_list/graphql/mutations/project_add_variable.mutation.graphql b/app/assets/javascripts/ci_variable_list/graphql/mutations/project_add_variable.mutation.graphql
deleted file mode 100644
index fa315084d86..00000000000
--- a/app/assets/javascripts/ci_variable_list/graphql/mutations/project_add_variable.mutation.graphql
+++ /dev/null
@@ -1,26 +0,0 @@
-#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
-
-mutation addProjectVariable($variable: CiVariable!, $endpoint: String!, $fullPath: ID!, $id: ID!) {
- ciVariableMutation: addProjectVariable(
- variable: $variable
- endpoint: $endpoint
- fullPath: $fullPath
- id: $id
- ) @client {
- project {
- id
- ciVariables {
- nodes {
- ...BaseCiVariable
- ... on CiProjectVariable {
- environmentScope
- masked
- protected
- raw
- }
- }
- }
- }
- errors
- }
-}