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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/environments/graphql/typedefs.graphql')
-rw-r--r--app/assets/javascripts/environments/graphql/typedefs.graphql14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/assets/javascripts/environments/graphql/typedefs.graphql b/app/assets/javascripts/environments/graphql/typedefs.graphql
index 44c985941d4..49ea719449e 100644
--- a/app/assets/javascripts/environments/graphql/typedefs.graphql
+++ b/app/assets/javascripts/environments/graphql/typedefs.graphql
@@ -1,4 +1,4 @@
-type Environment {
+type LocalEnvironment {
id: Int!
globalId: ID!
name: String!
@@ -9,14 +9,14 @@ type Environment {
autoStopPath: String
}
-type NestedEnvironment {
+type NestedLocalEnvironment {
name: String!
size: Int!
- latest: Environment!
+ latest: LocalEnvironment!
}
-type EnvironmentFolder {
- environments: [Environment!]!
+type LocalEnvironmentFolder {
+ environments: [LocalEnvironment!]!
availableCount: Int!
stoppedCount: Int!
}
@@ -27,9 +27,9 @@ type ReviewApp {
reviewSnippet: String
}
-type EnvironmentApp {
+type LocalEnvironmentApp {
stoppedCount: Int!
availableCount: Int!
- environments: [NestedEnvironment!]!
+ environments: [NestedLocalEnvironment!]!
reviewApp: ReviewApp!
}