1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-10 11:00:13 +02:00
copilot/frontend/src/graphql/Services.gql

12 lines
235 B
Plaintext
Raw Normal View History

2017-05-11 20:16:52 +03:00
#import "./DeploymentGroupInfo.gql"
2017-05-16 16:46:04 +03:00
#import "./ServiceInfo.gql"
2017-05-11 20:16:52 +03:00
query Services($deploymentGroupSlug: String!){
deploymentGroup(slug: $deploymentGroupSlug) {
2017-05-11 20:16:52 +03:00
...DeploymentGroupInfo
services {
2017-05-16 16:46:04 +03:00
...ServiceInfo
2017-05-11 20:16:52 +03:00
}
}
}