2017-05-16 16:46:04 +03:00
|
|
|
#import "./DeploymentGroupInfo.gql"
|
|
|
|
#import "./ServiceInfo.gql"
|
|
|
|
|
2017-05-17 19:10:18 +03:00
|
|
|
query Instances($deploymentGroupSlug: String!){
|
|
|
|
deploymentGroup(slug: $deploymentGroupSlug) {
|
2017-05-16 16:46:04 +03:00
|
|
|
...DeploymentGroupInfo
|
|
|
|
services {
|
|
|
|
...ServiceInfo
|
|
|
|
parent
|
|
|
|
connections
|
|
|
|
instances {
|
|
|
|
uuid
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|