क्या नेवले में समर्थन की मौजूदा कमी को देखते हुए यह सही तरीका होगा?
followerModel
.find({id_follower:{$in:followerIds}})
.distinct('id_post',function(error,ids) {
Posts.find({'_id':{$in : ids}},function(err,result) {
console.log(result);
});
});