parse.com - Retrieve objects from Parse and put them in an array -


i have class "object" on parse contains column int values named "score". want put values (using parse query) inside array going used in project. so, how can retrieve int values parse , put them in array? docs in website seem give examples , lessons on retrieving object known id (which useless me).

thanks!

js sdk

var query = new parse.query("object"); // object classname query.limit(1000); query.descending("createdat"); query.exists("score"); query.find().then(function(results) {      // results list score exist }); 

Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -