I'm using https://mongoosejs.com/ for querying mongo
I want to find data of array elements.Like this:
var a = ["a","b","c"];
topic.find({topic:a}).limit(4).exec(.....
If I use like this, I can find only for a element; but I need altogether. That means:
limit for a=4 limit for b=4 limit c=4
At stackoverflow you ask a question and we answer the question. Maybe one answer may be 2 may be 3 and stackoverflow send all comments of answers with limit.And i want to do this.