summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_variable_list/graphql/queries/project_variables.query.graphql
blob: a60a50e4bc46814f7c3b1c6a69a278e5fc1a7bf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "~/ci_variable_list/graphql/fragments/ci_variable.fragment.graphql"

query getProjectVariables($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    ciVariables {
      nodes {
        ...BaseCiVariable
        environmentScope
        masked
        protected
      }
    }
  }
}