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

admin_delete_variable.mutation.graphql « mutations « graphql « ci_variable_list « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 891dd86a1f563a5d3179cc9672251c205df0ea9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "~/ci/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
#import "~/ci/ci_variable_list/graphql/fragments/ci_instance_variable.fragment.graphql"

mutation deleteAdminVariable($variable: CiVariable!, $endpoint: String!) {
  ciVariableMutation: deleteAdminVariable(variable: $variable, endpoint: $endpoint) @client {
    ciVariables {
      nodes {
        ...BaseCiVariable
        ...BaseCiInstanceVariable
      }
    }
    errors
  }
}