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

get_environments.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: 48d0a780fc747cc3ee003c498dbaedb155fa4a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
query getEnvironments($projectPath: ID!, $search: String, $states: [String!]) {
  project(fullPath: $projectPath) {
    id
    data: environments(search: $search, states: $states) {
      environments: nodes {
        name
        id
      }
    }
  }
}