How do I $push into the Array which is in the Object in the document in mongoose?
The schema looks like this
{
rating: {
usersRated: Array,
rating: Number
}
}
I have tried {rating: {$push: {usersRated: data.userId}}}
, but it does not work.