
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
mongoose-transfer
Advanced tools
mongoose plugin to simplify the reference transfer in case of deletion
Mongoose plugin to transfer references to a new document by calling [document].transfer(newID)
npm install --save mongoose-transfer
const mongoose = require('mongoose')
const Schema = mongoose.Schema
const mongooseTransfer = require('mongoose-transfer')
let YourSchema = new Schema({
title: String,
description: String,
author: String,
})
YourSchema.plugin(mongooseTransfer, {
relations: [{ model: 'SomeOtherModel', key: 'author', condition: { company: '...' } }],
debug: true, // Default: false -> If true operations are logged out in your console
})
let Model = mongoose.model('YourSchema', YourSchema)
After setting up all relations, you can call .transfer(NEWID, OPTIONS) on your documents which will transfer all related documents to a new entity.
document.transfer(NEWID, OPTIONS)
This plugin adds a method .transfer to the schema. Call .transfer to run a reference transfer
This function takes 2 parameters:
| Parameter no. | Type | Description |
|---|---|---|
| 1 | ObjectId | ObjectId which matching documents should be transfered to |
| 2 | Object | Options (see info below) |
Example
user.transfer('NEWID', {
condition: { company: '...' },
})
Define under which conditions transfer can take place. Accepts an object (mongoose query) or a function executed on each document
{
condition: { "name": { $ne: "Mark" } }
}
{
condition: function(doc, model) {
console.log(model) // -> e.g. "User"
return doc.name !== 'Mark'
}
}
Define all relations this model has to other models.
relations is an Array and takes Objects like this:
| Prop | Type | Description |
|---|---|---|
model | String | Name of the registered mongoose model |
condition | See condition above | Overrides the condition on document level |
key | String/Object/Array | Define which props that contain references. See relations.key below |
Examples
{
model: 'SomeModel',
key: 'reference',
condition: { company: '...' }
}
{
model: 'SomeModel',
key: ['something.nested', { key: 'reference', options: { remove: true } }]
condition: function(doc, model) {
return doc.company === '...'
}
}
Define where the reference is located inside the document. Allows dotnotation ("some.deep.key").
relations.key can be an Array for multiple references inside one document or String/Object for single references inside one document.
Key can be defined in the following ways:
| Type | Example | Description |
|---|---|---|
| String | some.deep.key | Simpel string selector (dotnotation) |
| Object | { key: "some.deep.key", options: {...} } | Defining it as objects allow for options |
Key options
Keys allow the following options:
| Prop | Type | Description |
|---|---|---|
| remove | Boolean | Set to true if you want to remove the relation instead of transfering |
{
model: 'SomeModel',
key: [
'something.nested',
{ key: 'reference', options: { remove: true } }
]
}
You can enable logging of all operations by setting debug to true
The MIT License Copyright (c) Carsten Jacobsen
FAQs
mongoose plugin to simplify the reference transfer in case of deletion
We found that mongoose-transfer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.