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

22 lines
396 B
Plaintext
Raw Normal View History

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