This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Returned promise | |
var promise = new Parse.Promise() | |
// Error function | |
var error = function() { | |
console.error('Error:', arguments) | |
// Break it | |
response.error('Query failed, check logs') | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parse.Cloud.define("retrieveAllObjects", function(request, status) { | |
var result = []; | |
var chunk_size = 1000; | |
var processCallback = function(res) { | |
result = result.concat(res); | |
if (res.length === chunk_size) { | |
process(res[res.length-1].id); | |
} else { | |
status.success(result); | |
} |