Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save epinapala/f07f01643208ca90934550e08d1ff789 to your computer and use it in GitHub Desktop.
Save epinapala/f07f01643208ca90934550e08d1ff789 to your computer and use it in GitHub Desktop.
Mongoose Virtual field async await
Schema.virtual('comments')
//Returns comment owned by this product
.get(
async obj => await Comment
.find({ 'owner': this._id, deleted: { $ne: true } })
.sort('-likesCount -date_modified')
.limit(6)
.exec()
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment