12 lines
235 B
GraphQL
12 lines
235 B
GraphQL
#import "./DeploymentGroupInfo.gql"
|
|
#import "./ServiceInfo.gql"
|
|
|
|
query Services($deploymentGroupSlug: String!){
|
|
deploymentGroup(slug: $deploymentGroupSlug) {
|
|
...DeploymentGroupInfo
|
|
services {
|
|
...ServiceInfo
|
|
}
|
|
}
|
|
}
|