Answer the question
In order to leave comments, you need to log in
How to make a query that will search on several fields, one of which is populated, and show documents where there are matches on 1 and > fields?
There is a model
const BookSchema = new Schema({
bookInfo: {
title: { type: String, requiared: true },
authors: [{ type: String, requiared: true, ref: "Authors" }]
}
});
Book.find(query)
.populate("bookInfo.authors")
.exec((err, books) => {
if (err) {
res.json(err);
} else {
res.json(books);
}
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question