1
0
mirror of https://github.com/yldio/copilot.git synced 2025-01-15 13:30:11 +02:00
copilot/packages/cp-frontend/src/graphql/DeploymentGroupProvision.gql

17 lines
377 B
Plaintext
Raw Normal View History

mutation provisionManifest($deploymentGroupId: ID!, $type: ManifestType!, $format: ManifestFormat!, $raw: String!) {
provisionManifest(deploymentGroupId: $deploymentGroupId, type: $type, format: $format, raw: $raw) {
scale {
serviceName
replicas
}
plan {
running
actions {
type
service
machines
}
}
}
}