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

16 lines
289 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
2017-05-11 20:16:52 +03:00
services {
2017-05-16 16:46:04 +03:00
...ServiceInfo
2017-05-11 20:16:52 +03:00
instances {
uuid
name
}
}
}
}