Skip to content

Parse.com paginator for queries : automatically paginates the max limit of 1000 objects/query and returns the whole data.

Notifications You must be signed in to change notification settings

spacenick/parseFindAll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

How to use

In Cloud Code:

var parseFindAll = require('cloud/parseFindAll.js');
var myQuery = new Parse.Query("Whatever");
myQuery.equalsTo("foo","bar");
parseFindAll(myQuery).then(function(results){
	
	console.log(results.length);
	// results contains the WHOLE data of the table
});

Browser side:

You need to include async.js first; parseFindAll function will be available on the window scope

About

Parse.com paginator for queries : automatically paginates the max limit of 1000 objects/query and returns the whole data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published