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