Skip to content

WriteableCollection.delete()

David Fahlander edited this page Apr 9, 2014 · 29 revisions

Deletes all objects in the query.

Syntax

collection.delete()

Return Value

Promise

Sample

db.orders.where("state").anyOf("finished", "discarded").or("date").below("2014-02-01").delete()
         .then(function(deletedOrders) { console.log(JSON.stringify(deletedOrders)});

Remarks

This method is equivalent to the following:

collection.each(function (item, cursor) {
    cursor.delete();
});
Clone this wiki locally