how to push array element in mongoose insert code example

Example 1: mongodb push to arry in update

db.collection.update({_id:xx}, {$push:{letters : {$each:['first one'], $position:0}}})

Example 2: add items to a list in a document monoose

const {name , id} = req.body
    Category.update(
        {_id: id}, 
        {$push: {items: {"name": name}}},{new: true, upsert: true }).exec();
        res.sendStatus(200)

Example 3: mongodb push to arry in update

db.collection.update({_id:xx}, {$pop:{letters : -1}})

Example 4: add in to array mongoose

// With { $push: { field: element } }

// Example:
const elementToPush = { a: 1, b: 2 };
const body = { $push: { arrayField: elementToPush } };
model.patch(id, body);

Tags:

Misc Example