summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ci_variable_list/graphql/queries/project_environments.query.graphql
blob: 921e0ca25b935ef809c20dea5c29b5252387bbce (plain)
1
2
3
4
5
6
7
8
9
10
11
query getProjectEnvironments($fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    environments {
      nodes {
        id
        name
      }
    }
  }
}