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

inherited_ci_variables.query.graphql « queries « graphql « inherited_ci_variables « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fac461a47ddce9b3d9c4a598abc92eb9d176f76 (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 "~/graphql_shared/fragments/page_info.fragment.graphql"

query getInheritedCiVariables($after: String, $first: Int, $fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    inheritedCiVariables(after: $after, first: $first) {
      pageInfo {
        ...PageInfo
      }
      nodes {
        id
        key
        variableType
        environmentScope
        groupCiCdSettingsPath
        groupName
        masked
        protected
        raw
      }
    }
  }
}