launchApplication
Mark an application environment as launched.
launchApplication(
input: AppEnvironmentLaunchedInput
): AppEnvironmentLaunchedPayload
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentLaunchedInput) {
launchApplication(input: $input) {
app {
active
createdAt
id
name
organizationId
repo
serviceStatus
supportPackage
type
typeId
}
environment {
active
appId
backupPolicyId
backupsSqlDumpTool
branch
createdAt
currentCommit
datacenter
dbOperationInProgress
defaultDomain
deploymentStrategy
id
isDBPartitioningEnabled
isFedramp
isHipaa
isK8sResident
isLiveBackupCopyAllowed
isMultisite
isOnLatestCode
isSubdirectoryMultisite
launchModeEndAt
launched
name
repo
type
uniqueLabel
wpcliStrategy
}
}
}
{
"input": {
"environmentId": 42,
"id": 42
}
}
{
"data": {
"launchApplication": {
"app": {
"active": true,
"createdAt": "createdAt",
"id": 42,
"name": "A name",
"organizationId": 42,
"repo": "repo",
"serviceStatus": "serviceStatus",
"supportPackage": "supportPackage",
"type": "type",
"typeId": 42
},
"environment": {
"active": true,
"appId": 42,
"backupPolicyId": 42,
"backupsSqlDumpTool": "backupsSqlDumpTool",
"branch": "branch",
"createdAt": "createdAt",
"currentCommit": "currentCommit",
"datacenter": "datacenter",
"dbOperationInProgress": true,
"defaultDomain": "defaultDomain",
"deploymentStrategy": "deploymentStrategy",
"id": 42,
"isDBPartitioningEnabled": true,
"isFedramp": true,
"isHipaa": true,
"isK8sResident": true,
"isLiveBackupCopyAllowed": true,
"isMultisite": true,
"isOnLatestCode": true,
"isSubdirectoryMultisite": true,
"launchModeEndAt": "launchModeEndAt",
"launched": true,
"name": "A name",
"repo": "repo",
"type": "type",
"uniqueLabel": "uniqueLabel",
"wpcliStrategy": "ssh"
}
}
}
}
Arguments
launchApplication.input ● AppEnvironmentLaunchedInput input common
The application and environment to update.
Type
AppEnvironmentLaunchedPayload object common
The result of marking an application as launched.