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

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

query getGroupVariables($after: String, $first: Int = 100, $fullPath: ID!) {
  group(fullPath: $fullPath) {
    id
    ciVariables(after: $after, first: $first) {
      limit
      pageInfo {
        ...PageInfo
      }
      nodes {
        ...BaseCiVariable
        ... on CiGroupVariable {
          environmentScope
          masked
          protected
          raw
        }
      }
    }
  }
}