Der er nogle måder at opnå dette på. Den første er ved $elemMatch
operatør:
const docs = await Documents.find({category: { $elemMatch: {$eq: 'yourCategory'} }});
// you may need to convert 'yourCategory' to ObjectId
Den anden er af $in
eller $all
operatører:
const docs = await Documents.find({category: { $in: [yourCategory] }});
eller
const docs = await Documents.find({category: { $all: [yourCategory] }});
// you can give more categories with these two approaches
//and again you may need to convert yourCategory to ObjectId
$in
er som OR og $all
gerne OG. For yderligere detaljer, tjek dette link:https://docs.mongodb.com /manual/reference/operator/query/all/
Den tredje er af aggregate()
funktion:
const docs = await Documents.aggregate([
{ $unwind: '$category' },
{ $match: { 'category': mongoose.Types.ObjectId(yourCategory) } }
]};
med aggregate() får du kun ét kategori-id i dit kategoriarray.