You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Iterates over each result of a query, calling a callback for each one. If
947
+
* the callback returns a promise, the iteration will not continue until
948
+
* that promise has been fulfilled. If the callback returns a rejected
949
+
* promise, then iteration will stop with that error. The items are
950
+
* processed in an unspecified order. The query may not have any sort order,
951
+
* and may not use limit or skip.
952
+
* @param {Function} callback Callback <ul>
953
+
* <li>accumulator: The accumulator accumulates the callback's return values. It is the accumulated value previously returned in the last invocation of the callback.</li>
954
+
* <li>currentObject: The current Parse.Object being processed in the array.</li>
955
+
* <li>index: The index of the current Parse.Object being processed in the array.</li>
956
+
* </ul>
957
+
* @param {Mixed} initialValue A value to use as the first argument to the first call of the callback. If no initialValue is supplied, the first object in the query will be used and skipped.
958
+
* @param {Object} options Valid options are:<ul>
959
+
* <li>useMasterKey: In Cloud Code and Node only, causes the Master Key to
960
+
* be used for this request.
961
+
* <li>sessionToken: A valid session token, used for making a request on
962
+
* behalf of a specific user.
963
+
* </ul>
964
+
* @return {Promise} A promise that will be fulfilled once the
0 commit comments