mongoose-operations
Version:
set of mongoose-operations
73 lines (56 loc) • 1.43 kB
Markdown
a set of mongoose-operations to create, find, update, count on a given connection
```
await createOrUpdate({
content: 'content',
file: {
size,
data: buffer,
contentType: mimetype,
}
}, 'connection')
return { status, _id }
//200 created
//201 updated
```
- [Installation](
- [Usage](
```
$ npm i mongoose-operations
```
* Create new Data in Collection
* Find all Fields in a Collection using Aggregate
* Update specific Object keys
* Count results by match
* Delete Row by ID
Create new Data in Collection will return _id and existing Fields, if data already exists on indexed match
```js
const mongoose = require('mongoose') //need to pass mongoose to prevent package dups
const mongooseOperations = require('mongoose-operations')
const instance = new mongooseOperations(mongoose)
const connection = DBConnect().model(
TABLE,
SCHEMA,
TABLE)
module.exports = class {
createPackageMeta = async (title) =>
await instance.create(
{ title: 'MyTitle' },
connection
)
}
```
return if title already exists
```js
{
e: 11000,
_id: new ObjectId("64e9c309a90689fbecefb465"),
title: 'MyTitle',
}
```