DeleteVideo
Deletes video objects that satisfy the specified constraints, and all the connections to/from those video objects.
Parameters
[optional] ref: Reference to video objects within the transaction (result of a FindVideo).
[optional] constraints
Details
If the ref parameter is used, constraints will be ignored.
If the ref parameter is used, the search results represented by the ref will not be valid for the remaining commands within the transaction.
For more complex searches for objects to delete, a Find command must be used first within the transaction.
Warning: Delete is an performance expensive command, as ApertureDB was designed for read intensive workloads.
Examples
Delete videos with “unique_id” property equal to 22:
[ {
"DeleteVideo": {
"constraints": {
"unique_id": ["==", 22]
}
}
}]
Delete videos with “unique_id” property equal to 22 and connections to entities of class “Person” with the “age” property equal to 30:
[ {
"FindEntity": {
"with_class": "Person",
"_ref": 1,
"constraints": {
"age": ["==", 30]
}
}
}, {
"FindVideo" : {
"_ref": 2,
"constraints": {
"unique_id": ["==", 22]
},
"blobs": false,
"is_connected_to": {
"ref": 1,
}
}
}, {
"DeleteVideo": {
"ref": 2,
}
}]