startCustomDeploy
Start a custom deploy on an environment.
startCustomDeploy(
input: AppEnvironmentCustomDeployInput
): AppEnvironmentCustomDeployPayload
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentCustomDeployInput) {
startCustomDeploy(input: $input) {
app {
active
createdAt
id
name
organizationId
repo
serviceStatus
supportPackage
type
typeId
}
message
success
}
}
{
"input": {
"basename": "basename",
"checksum": "checksum",
"deployMessage": "deployMessage",
"environmentId": 42,
"id": 42
}
}
{
"data": {
"startCustomDeploy": {
"app": {
"active": true,
"createdAt": "createdAt",
"id": 42,
"name": "A name",
"organizationId": 42,
"repo": "repo",
"serviceStatus": "serviceStatus",
"supportPackage": "supportPackage",
"type": "type",
"typeId": 42
},
"message": "message",
"success": true
}
}
}
Arguments
startCustomDeploy.input ● AppEnvironmentCustomDeployInput input common
The environment and artifact details for the custom deploy.
Type
AppEnvironmentCustomDeployPayload object common
The result of starting a custom deploy.