2017-05-16 16:46:04 +03:00
|
|
|
#import "./DeploymentGroupInfo.gql"
|
|
|
|
#import "./ServiceInfo.gql"
|
|
|
|
|
2017-05-22 20:13:24 +03:00
|
|
|
query Instances($deploymentGroupSlug: String!, $serviceSlug: String) {
|
2017-05-17 19:10:18 +03:00
|
|
|
deploymentGroup(slug: $deploymentGroupSlug) {
|
2017-05-16 16:46:04 +03:00
|
|
|
...DeploymentGroupInfo
|
2017-05-22 20:13:24 +03:00
|
|
|
services(slug: $serviceSlug) {
|
2017-05-16 16:46:04 +03:00
|
|
|
...ServiceInfo
|
2017-05-11 20:16:52 +03:00
|
|
|
instances {
|
2017-06-01 17:05:10 +03:00
|
|
|
id
|
2017-05-11 20:16:52 +03:00
|
|
|
name
|
2017-06-26 15:25:46 +03:00
|
|
|
status
|
2017-07-12 16:00:54 +03:00
|
|
|
healthy
|
2017-05-11 20:16:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|