Using sequelize for model creation, i needed to update my database so i used Model.findByIdAndUpdate which returned an error and i later found the right way to update to the database using
Model.update({
title: 'Updated title '
},
{
where:
{
id: 1
}
})
I hope this helps someone out there... or is their any other way ? i will like to know thanks.
example below:
https://thepracticaldev.s3.amazonaws.com/i/xv3dnnshqqitd1gs9k66.png
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (5)
Do you know if it's possible to update multiple fields at once using this method?
thank you
Sorry I got your comment late, were you able to resolve this?
Yes! I don't remember what I was doing wrong. It was something silly. Thank you for replying!
Thanks man!
Thanks a lot, they were hiding the solution in their docs.