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: ac6a68e450cbbcbe8cedbbbfae9cfdb17c53e398 (plain)
1
2
3
4
5
6
7
query getEnvironmentFolder($environment: NestedLocalEnvironment, $scope: String, $search: String) {
  folder(environment: $environment, scope: $scope, search: $search) @client {
    activeCount
    environments
    stoppedCount
  }
}