Mongodb – mongo does not allow updating createdAt
order = await Order.findOneAndUpdate({_id: orderId}, { $set: { created_at: new Date(sold_date), } }, { new: true }); I'm trying to manually update a previously created created_at field in the document. It seems that mongo avoids this update and nothing happens…