B
B
bpGusar2019-10-23 15:43:26
Mongoose
bpGusar, 2019-10-23 15:43:26

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" }]
      }
    });


I usually make a search query like this
Book.find(query)
      .populate("bookInfo.authors")
      .exec((err, books) => {
        if (err) {
          res.json(err);
        } else {
          res.json(books);
        }
      });


It is clear how to search for ordinary fields, but it is not clear how to search for populated fields.

The task is this:
make a query on the bookInfo.title field and on the populated bookInfo.authors field and display only those data where at least one of the search parameters matches.

That is, it should turn out like a filter, which I don’t understand how to do.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question