await Cart.update(
{ $elemMatch: { user_id: decoded._id } },
{
$addToSet: {
"cart.&.items": {
product_id: req.query.product_id,
quantity: 1,
},
},
}
);
My goal is to add elements to the array of items in the cart.