7 lines
237 B
GraphQL
7 lines
237 B
GraphQL
query getEnvironmentFolder($environment: NestedLocalEnvironment, $scope: String, $search: String) {
|
|
folder(environment: $environment, scope: $scope, search: $search) @client {
|
|
availableCount
|
|
environments
|
|
stoppedCount
|
|
}
|
|
}
|