startDBBackupCopy
Start copying a database backup.
startDBBackupCopy(
input: AppEnvironmentStartDBBackupCopyInput
): AppEnvironmentStartDBBackupCopyPayload!
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentStartDBBackupCopyInput) {
startDBBackupCopy(input: $input) {
app {
active
createdAt
id
name
organizationId
repo
serviceStatus
supportPackage
type
typeId
}
message
success
}
}
{
"input": {
"backupId": 30.7,
"environmentId": 42,
"id": 42,
"subsiteId": 42,
"tables": [
"tables"
]
}
}
{
"data": {
"startDBBackupCopy": {
"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
startDBBackupCopy.input ● AppEnvironmentStartDBBackupCopyInput input common
The backup copy request.
Type
AppEnvironmentStartDBBackupCopyPayload object common
The result of starting a database backup copy.