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

variables.query.graphql « queries « 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: 95056842b4932a55b05496fb334c3641826bcc4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"

query getVariables {
  ciVariables {
    nodes {
      ...BaseCiVariable
      ... on CiInstanceVariable {
        masked
        protected
      }
    }
  }
}