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

project_delete_variable.mutation.graphql « mutations « graphql « ci_variable_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e83dc9a5e5ec3cb919eb171528dca66d2627c903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"

mutation deleteProjectVariable(
  $variable: CiVariable!
  $endpoint: String!
  $fullPath: ID!
  $projectId: ID!
) {
  deleteProjectVariable(
    variable: $variable
    endpoint: $endpoint
    fullPath: $fullPath
    projectId: $projectId
  ) @client {
    project {
      id
      ciVariables {
        nodes {
          ...BaseCiVariable
          ... on CiProjectVariable {
            environmentScope
            masked
            protected
          }
        }
      }
    }
    errors
  }
}