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

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

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