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

folder.query.graphql « queries « graphql « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8c145ee916306308a8b8ec7caaa9ace48c31121 (plain)
1
2
3
4
5
6
7
query getEnvironmentFolder($environment: NestedLocalEnvironment, $scope: String) {
  folder(environment: $environment, scope: $scope) @client {
    availableCount
    environments
    stoppedCount
  }
}