MongoDB $lookup vs Mongoose populate

Thanks to a github thread shared by GrĂ©gory NEUT in the question’s comments I have been able to establish certain facts: Mongoose’s populate() method does not use MongoDB’s $lookup behind the scenes. It simply makes another query to the database. Mongoose does not have functionalities that MongoDB does not have. populate() just makes two or … Read more