Mongoose v6.9.1: Query Population

PHOTO EMBED

Thu Feb 16 2023 11:39:22 GMT+0000 (Coordinated Universal Time)

Saved by @jaimin #mongodb #virtual #populate

userSchema.pre('find', function (next) {
  if (this.options._recursed) {
    return next();
  }
  this.populate({ path: "followers following", options: { _recursed: true } });
  next();
});
content_copyCOPY

https://mongoosejs.com/docs/populate.html#populate-virtuals