Mongoose how to populate and match populated field Mongoose how to populate and match populated field mongoose mongoose

Mongoose how to populate and match populated field


You can use

Checkin.find({ email: your_email })       .populate(checkoutSchema)       .exec()       .then(result => {            })       .catch(error => {            })

Try pass email address that you want to match as your_email. This result receive when it success and error receive when error happens.