Skip to content

deleteSnapshotsOfUnmanagedObjects

Deletes all the snapshots of the unmanaged objects in the request.

Arguments

Argument Type Description
input (required) DeleteSnapshotsOfUnmanagedObjectsInput! Input to delete snapshots of unmanaged objects.

Returns

RequestSuccess!

Sample

mutation DeleteSnapshotsOfUnmanagedObjects($input: DeleteSnapshotsOfUnmanagedObjectsInput!) {
  deleteSnapshotsOfUnmanagedObjects(input: $input) {
    success
  }
}
{
  "input": {
    "objectIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "deleteSnapshotsOfUnmanagedObjects": {
      "success": true
    }
  }
}