summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_variable_list/graphql/mutations/project_delete_variable.mutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci_variable_list/graphql/mutations/project_delete_variable.mutation.graphql')
-rw-r--r--app/assets/javascripts/ci_variable_list/graphql/mutations/project_delete_variable.mutation.graphql31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/assets/javascripts/ci_variable_list/graphql/mutations/project_delete_variable.mutation.graphql b/app/assets/javascripts/ci_variable_list/graphql/mutations/project_delete_variable.mutation.graphql
deleted file mode 100644
index c3358cc35b9..00000000000
--- a/app/assets/javascripts/ci_variable_list/graphql/mutations/project_delete_variable.mutation.graphql
+++ /dev/null
@@ -1,31 +0,0 @@
-#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
-
-mutation deleteProjectVariable(
- $variable: CiVariable!
- $endpoint: String!
- $fullPath: ID!
- $id: ID!
-) {
- ciVariableMutation: deleteProjectVariable(
- variable: $variable
- endpoint: $endpoint
- fullPath: $fullPath
- id: $id
- ) @client {
- project {
- id
- ciVariables {
- nodes {
- ...BaseCiVariable
- ... on CiProjectVariable {
- environmentScope
- masked
- protected
- raw
- }
- }
- }
- }
- errors
- }
-}