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

variables.query.graphql « queries « 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: adf539a44aee0515ff372403bfd62d25028abf82 (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
#import "~/ci/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"
#import "~/graphql_shared/fragments/page_info.fragment.graphql"

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