27 lines
450 B
GraphQL
27 lines
450 B
GraphQL
#import "./DeploymentGroupInfo.gql"
|
|
#import "./ServiceInfo.gql"
|
|
|
|
query Services($deploymentGroupSlug: String!){
|
|
deploymentGroup(slug: $deploymentGroupSlug) {
|
|
...DeploymentGroupInfo
|
|
services {
|
|
...ServiceInfo
|
|
branches {
|
|
name
|
|
slug
|
|
instances {
|
|
id
|
|
status
|
|
healthy
|
|
}
|
|
}
|
|
connections
|
|
instances {
|
|
id
|
|
status
|
|
healthy
|
|
}
|
|
}
|
|
}
|
|
}
|