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

group_add_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: 0dbb6c891fd1128b985aad15351b3fe7dbba08f9 (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
#import "~/ci/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"

mutation addGroupVariable($variable: CiVariable!, $endpoint: String!, $fullPath: ID!, $id: ID!) {
  ciVariableMutation: addGroupVariable(
    variable: $variable
    endpoint: $endpoint
    fullPath: $fullPath
    id: $id
  ) @client {
    group {
      id
      ciVariables {
        nodes {
          ...BaseCiVariable
          ... on CiGroupVariable {
            environmentScope
            masked
            protected
            raw
          }
        }
      }
    }
    errors
  }
}