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

typedefs.graphql « graphql « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44c985941d48963f9b35a6b762c4de99ccf0157e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
type Environment {
  id: Int!
  globalId: ID!
  name: String!
  folderPath: String
  stopPath: String
  deletePath: String
  retryUrl: String
  autoStopPath: String
}

type NestedEnvironment {
  name: String!
  size: Int!
  latest: Environment!
}

type EnvironmentFolder {
  environments: [Environment!]!
  availableCount: Int!
  stoppedCount: Int!
}

type ReviewApp {
  canSetupReviewApp: Boolean!
  allClustersEmpty: Boolean!
  reviewSnippet: String
}

type EnvironmentApp {
  stoppedCount: Int!
  availableCount: Int!
  environments: [NestedEnvironment!]!
  reviewApp: ReviewApp!
}