Mongoose - Query nested objects Mongoose - Query nested objects mongoose mongoose

Mongoose - Query nested objects


I think that this query may be the thing you're looking for...

{  comments: {    $elemMatch: {      _id: 111,      likes: user_id1    }  }}

Hope it helps you