Đây có phải là cách đúng đắn khi xét đến tình trạng thiếu hỗ trợ hiện tại trong mongoose không?
followerModel
.find({id_follower:{$in:followerIds}})
.distinct('id_post',function(error,ids) {
Posts.find({'_id':{$in : ids}},function(err,result) {
console.log(result);
});
});