wrong way
const updatedData = await UserModel.findOneAndUpdate(
{ _id: userId, datas: { $elemMatch: { dataId: dataId } } },
{
$set: { "datas.$": dateToUpdate },
},
);
right way
const updatedData = await UserModel.findOneAndUpdate(
{ _id: userId, datas: { $elemMatch: { dataId: mongoose.Types.ObjectId(dataId) } } },
{
$set: { "datas.$": dateToUpdate },
},
);
-> dataId is a mongoose.Types.ObjectId
see more https://mongoosejs.com/docs/schematypes.html