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

group_environments.query.graphql « queries « graphql « ci_variable_list « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5768d370474f9f2900a6242b70119fb43b91aef9 (plain)
1
2
3
4
5
6
7
8
9
10
query getGroupEnvironments($fullPath: ID!, $first: Int, $search: String) {
  group(fullPath: $fullPath) {
    id
    environmentScopes(first: $first, search: $search) {
      nodes {
        name
      }
    }
  }
}