Skip to content

Instantly share code, notes, and snippets.

@biantris
Last active July 5, 2022 21:56
Show Gist options
  • Save biantris/378890e0a533179e186a61ccfd160687 to your computer and use it in GitHub Desktop.
Save biantris/378890e0a533179e186a61ccfd160687 to your computer and use it in GitHub Desktop.
update-data-mongoose-mongoDB

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment