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

getEnvironments.query.graphql « queries « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17cd1b2c342bda6e246b199634c7b13535cb0ea8 (plain)
1
2
3
4
5
6
7
8
9
10
query getEnvironments($projectPath: ID!, $search: String, $states: [String!]) {
  project(fullPath: $projectPath) {
    data: environments(search: $search, states: $states) {
      environments: nodes {
        name
        id
      }
    }
  }
}