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
});
});