abortMediaExport
Request an abort of an active media export.
abortMediaExport(
input: AbortMediaExportInput!
): AbortMediaExportPayload!
Example
- Query
- Variables
- Response
mutation ($input: AbortMediaExportInput!) {
abortMediaExport(input: $input) {
applicationId
environmentId
mediaExportStatusChange {
exportId
siteId
statusFrom
statusTo
}
}
}
{
"input": {
"appId": 42,
"environmentId": 42,
"mediaExportId": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e"
}
}
{
"data": {
"abortMediaExport": {
"applicationId": 42,
"environmentId": 42,
"mediaExportStatusChange": {
"exportId": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",
"siteId": 42,
"statusFrom": "statusFrom",
"statusTo": "statusTo"
}
}
}
}
Arguments
abortMediaExport.input ● AbortMediaExportInput! non-null input common
The application, environment, and export to abort.
Type
AbortMediaExportPayload object common
The result of requesting an abort of a media export.