summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_variable_list/graphql/queries/group_variables.query.graphql
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
        }
      }
    }
  }
}