mirror of
https://github.com/yldio/copilot.git
synced 2025-01-13 12:30:12 +02:00
13 lines
179 B
GraphQL
13 lines
179 B
GraphQL
#import "./ServiceInfo.gql"
|
|
|
|
mutation StartServices($ids: [ID]!) {
|
|
startServices(ids: $ids) {
|
|
...ServiceInfo
|
|
instances {
|
|
id
|
|
status
|
|
healthy
|
|
}
|
|
}
|
|
}
|