objection-paranoia
v1.0.3
Published
A Objectionjs plugin to add soft delete.
Downloads
172
Maintainers
Readme
objection-paranoia
(https://www.npmjs.com/package/objection-paranoia)
Automatically handle soft-deleting with your Objection.js models.
Installation
Install from npm:
npm install objection-paranoia
Register the plugin with an instance of objection:
const objectionSoftDelete = require('objection-paranoia');
objectionSoftDelete.register(objection);
Configuration
By default, objection-paranoia uses the deleted_at
attribute for soft-deletes. You can optionally pass in an options object as the second argument to register to specify a custom attribute to use:
objectionSoftDelete.register(objection, {
columnName: 'deleted_at',
});
Options
columnName: the name of the column to use as the soft delete flag on the model (Default: 'deleted_at'). The column must exist on the table for the model.
You can specify different column names per-model by using the options:
objectionSoftDelete.register(objection, {
columnName: 'deleted_at',
deletedValue: new Date() | knex.fn.now(),
notDeletedValue: null | true | false,
});
deletedValue: you can set this option to allow a different value than "new Date()" to be set in the specified column. For instance, you can use the following code to make a timestamp (you need knex instance to do so)
objectionSoftDelete.register(objection, {
columnName: 'deleted_at',
deletedValue: new Date() | knex.fn.now(),
});
notDeletedValue: you can set (and should) this option along with deletedValue to allow a different value than "null" to be set in the specified column. For instance, you can use the following code to restore the column to null (you need knex instance to do so)
objectionSoftDelete.register(objection, {
columnName: 'deleted_at',
deletedValue: new Date() | knex.fn.now(),
notDeletedValue: null | true | false,
});
Usage
When soft-delete is enabled on a model, the delete timestamp will be set to new Date()
on deletion.
Enable soft-delete for a model
Set the softDelete
static property on your model to true:
class MyModel {
static get softDelete() {
return true;
}
}
When softDelete is enabled, all delete queries to this model will instead update the model with a delete timestamp, and all queries to find these models will omit deleted instances.
Include deleted records in query
MyModel.query().withDeleted();
Force delete
MyModel.query().forceDelete();