8295bd6882
this shall be a progressive process
16 lines
287 B
GraphQL
16 lines
287 B
GraphQL
#import "./DeploymentGroupInfo.gql"
|
|
#import "./ServiceInfo.gql"
|
|
|
|
query Services($deploymentGroupSlug: String!){
|
|
deploymentGroup(slug: $deploymentGroupSlug) {
|
|
...DeploymentGroupInfo
|
|
services {
|
|
...ServiceInfo
|
|
parent
|
|
instances {
|
|
uuid
|
|
}
|
|
}
|
|
}
|
|
}
|