@gswag/mongoose-find-by-reference
TypeScript icon, indicating that this package has built-in type declarations

1.0.9 • Public • Published

mongoose-find-by-reference

npm version contributions welcome Downloads

English | 简体中文

This is a Mongoose plugin that allows your Mongoose to support lookup on reference fields.

Reference field is like this:

{
    type: MongooseSchema.Types.ObjectId,
    ref: 'XXX',
  }

Its principle is to parse your find request. When it finds that you want to filter the value of the reference field, it will read the model corresponding to the reference field and perform the search, obtain the id array that matches the filter, and then put the reference field The filter of the value is replaced by the judgment of whether the value of the reference field is in the id array.

install

npm i -S mongoose-find-by-reference

usage

The mongoose-find-by-reference module exposes a single function that you can pass to Mongoose schema's plugin() function.

const { MongooseFindByReference } = require('mongoose-find-by-reference');
const schema = new mongoose.Schema({
  /* ... */
});
schema.plugin(MongooseFindByReference);

Then, you can use it like this.

const result = await catModel
  .find({
    $and: {
      parents: {
        'owner.name': 'Dean',
      },
      sex: 0,
    },
  })
  .exec();

Its conditions will be automatically replaced with:

const newConditions = {
  $and: {
    parents: {
      $in: [/* ObjectIDs for Eligible Cats */],
    },
    sex: 0,
  },
};

Package Sidebar

Install

npm i @gswag/mongoose-find-by-reference

Weekly Downloads

5

Version

1.0.9

License

Apache 2.0

Unpacked Size

48.8 kB

Total Files

10

Last publish

Collaborators

  • asif_mahmud_shimon