summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci/pipeline_new/graphql/queries/ci_config_variables.graphql
blob: 648cd8b66b5dc21b077a0816ec2e2a519516107d (plain)
1
2
3
4
5
6
7
8
9
10
11
query ciConfigVariables($fullPath: ID!, $ref: String!) {
  project(fullPath: $fullPath) {
    id
    ciConfigVariables(sha: $ref) {
      description
      key
      value
      valueOptions
    }
  }
}