joyent-portal/frontend/src/graphql/ServicesTopology.gql
2017-05-23 17:23:37 +01:00

17 lines
306 B
GraphQL

#import "./DeploymentGroupInfo.gql"
#import "./ServiceInfo.gql"
query Instances($deploymentGroupSlug: String!){
deploymentGroup(slug: $deploymentGroupSlug) {
...DeploymentGroupInfo
services {
...ServiceInfo
parent
connections
instances {
uuid
}
}
}
}