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