16 lines
285 B
GraphQL
16 lines
285 B
GraphQL
#import "./DeploymentGroupInfo.gql"
|
|
#import "./ServiceInfo.gql"
|
|
|
|
query Services($deploymentGroupSlug: String!){
|
|
deploymentGroup(slug: $deploymentGroupSlug) {
|
|
...DeploymentGroupInfo
|
|
services {
|
|
...ServiceInfo
|
|
parent
|
|
instances {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|