Given a query result cursor, is it safe to delete/modify each item while iterating over the cursor?
I run a query and get a cursor, for each of the result, I want to modify (“replace”) the found resource, or delete it.
Is this a safe operation? Or am I required to finish iterating over ALL the results and only then make the changes?
I’m using the Node SDK, if it matters.