mirror of
https://github.com/yldio/copilot.git
synced 2024-11-16 00:00:06 +02:00
13 lines
211 B
GraphQL
13 lines
211 B
GraphQL
#import "./DeploymentGroupInfo.gql"
|
|
|
|
query Services($deploymentGroupId: String!){
|
|
deploymentGroup(id: $deploymentGroupId) {
|
|
...DeploymentGroupInfo
|
|
services {
|
|
uuid
|
|
name
|
|
id
|
|
}
|
|
}
|
|
}
|