joyent-portal/frontend/src/graphql/ServicesTopology.gql

17 lines
306 B
Plaintext
Raw Normal View History

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