@reis/mongoose-upsert-many

3.0.0 • Public • Published

@reis/mongoose-upsert-many

npm version github issues

A plugin that adds an upsertMany bulk op to Mongoose schemas

Installation

You can install this package using yarn or npm.

#yarn
yarn add @reis/mongoose-upsert-many

#npm
npm install @reis/mongoose-upsert-many --save

Usage

Setup as a global plugin for all Mongoose schema's:

import mongoose from 'mongoose'
import {upsertMany} from '@reis/mongoose-upsert-many'

//Global plugin
mongoose.plugin(upsertMany)

Or for a specific (sub) schema:

import mongoose from 'mongoose'
import {upsertMany} from '@reis/mongoose-upsert-many'
const {Schema} = mongoose

//Define schema
const MySchema = new Schema(/* ... */}, {

  //Schema-wide configuration for the upsertMany plugin
  upsertMany: {
    matchFields: ['field1', 'field2'],
    type: 'replaceOne',
    ensureModel: true,
  },
})

//Apply plugin
MySchema.plugin(upsertMany)

This plugin will expose a static upsertMany method on your models which you can use to perform bulk upsert operations:

//Large amount of items
const items = [
  ...
]

//Optionally, overwrite schema-wide configuration
const config = {matchFields: ['foo', 'bar.nested']}

//Perform bulk operation
const result = await MyModel.upsertMany(items, config)

//Returns promise with MongoDB bulk result object
console.log(result.nUpserted + result.nModified, 'items processed')

Configuration

The following configuration options are available and can be passed either via the schema options or as the last parameter in the upsertMany method:

type: The bulk op type, supports any of the available bulkWrite ops, although the insert or delete ops will obviously not perform an upsert. Default value is updateOne.

matchFields: Match fields are fields that are used to create the filter criteria for the upsert operations. For example, passing ['name'] will try to match each item on the value of its name property. Default value is ['_id'].

ensureModel: Items you pass in to the plugin can be either mongoose Models or raw data. When this flag is set to true, items are always converted to Mongoose models to ensure schema validation and any schema defaults are applied. Default value is false.

ordered: Whether the bulk operations are to be ordered or not. Passed to Mongoose. Default value is true.

toObjectConfig: Configuration to pass to the toObject method when converting Mongoose models back to plain items, safe for insertion into the bulk operation. Default value is {depopulate: true, versionKey: false}.

Issues & feature requests

Please report any bugs, issues, suggestions and feature requests in the mongoose-upsert-many issue tracker.

License

(MIT License)

Copyright 2018-2023, Adam Reis

Package Sidebar

Install

npm i @reis/mongoose-upsert-many

Weekly Downloads

6

Version

3.0.0

License

MIT

Unpacked Size

9.98 kB

Total Files

8

Last publish

Collaborators

  • adamreisnz