Mongoose Find In Array Of Objects
I have a Mongoose schema var MessageSchema = new Schema({ streamer: { streamer_username: String, streams: [{ id: String, messages: [{
Solution 1:
I am late but I hope it helps other people
You can simply use .find()
and inside it, you can create the specifications of the conditions on more than one field nested in an array of documents. The easiest way is:
MessageSchema.find({ "streamer.streams": { id: "XXX" } });
Post a Comment for "Mongoose Find In Array Of Objects"