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: 9b255c3c1820371815b075057899a54dba133700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

query getVariables($after: String, $first: Int = 100) {
  ciVariables(after: $after, first: $first) {
    pageInfo {
      ...PageInfo
    }
    nodes {
      ...BaseCiVariable
      ... on CiInstanceVariable {
        masked
        protected
        raw
      }
    }
  }
}