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

environment_app.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: c3ab9cf7fca5a90fc821d62aae3a7fc23f8962fd (plain)
1
2
3
4
5
6
7
8
query getEnvironmentApp($page: Int, $scope: String) {
  environmentApp(page: $page, scope: $scope) @client {
    availableCount
    stoppedCount
    environments
    reviewApp
  }
}