Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using mongoose, I would like having a callback after 2 different queries have completed.

var team = Team.find({name: 'myteam'});
var games = Game.find({visitor: 'myteam'});

Then how to chain and/or wrap those 2 requests within promises assuming I want those requests non blocking and executed asynchronously?

I would like to avoid the following blocking code:

team.first(function (t) {
  games.all(function (g) {
    // Do something with t and g
  });
});
share|improve this question

2 Answers

I think you already found solution but anyway. You can easily use async library. In this case your code will looks like:

async.parallel(
    {
        team: function(callback){
            Team.find({name: 'myteam'}, function (err, docs) {
                callback(null, docs);
            });
        },
        games: function(callback){
            Games.find({visitor: 'myteam'}, function (err, docs) {
                callback(null, docs);
            });
        },                    
    }, 
    function(e, r){
        // can use r.team and r.games as you wish
    }
);
share|improve this answer

I think you want to look at something like

https://github.com/creationix/step

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.