I come face to face with situations where I need to perform multiple queries on individual records. Is there a way to perform a batch query like we used to do in Parse please ?
Thanks.
Victor
I come face to face with situations where I need to perform multiple queries on individual records. Is there a way to perform a batch query like we used to do in Parse please ?
Thanks.
Victor
There are way to perform multiple operations with a single request. What exactly are you trying to do?
I need to check the time status of a record and see if 10 minutes have been passed since it was created. Then I set a flag to each of those records to true if so. How can I accomplish this query with a single server request.
Thanks.
You can perform a bulk update request using REST API (search for “bulk update”):
https://backendless.com/documentation/data/rest/data_updating_data_objects.htm
The query should use the following “where” argument (must be URL-encoded):
created > timestamp-as-of-10-minutes-from-now
Hope this helps.
Regards,
Mark