Dovresti usare MongoDB $in
operatore -
mongoose.find({title: {$in: ['some title', 'some other title']}})
Fornisci un array a $in
operatore e restituirà tutti i documenti che hanno un titolo esatto nell'array specificato.
Dovresti usare MongoDB $in
operatore -
mongoose.find({title: {$in: ['some title', 'some other title']}})
Fornisci un array a $in
operatore e restituirà tutti i documenti che hanno un titolo esatto nell'array specificato.