remove multiple objects at once?

How can I remove multiple objects in one call? looking for something like

Backendless.Persistence.of( constructor-function ).remove( dataObject, async );

but for an array.

Thanks!

Bulk delete is available in REST API (search for “bulk delete”):

https://backendless.com/documentation/data/rest/data_deleting_data_objects.htm

Thanks! How does the where clause work? let’s say I want to delete all items where the num=1, or num=2

just like you wrote (without comma):

num = 1 or num = 2

alternatively:

num in (1, 2)

Keep in mind that the whereClause must be URL-encoded.