Bisa tolong coba ini :
db.collection_a.aggregate(
[{ $match: { _id: ObjectId(' ') } },
// other $lookups...
{
$lookup: {
as: 'collection_b',
from: 'collection_b',
let: { id: { $toString: '$_id' } },
pipeline: [
{
$addFields: {
"related": {
"$cond": {
"if": {
"$ne": [{ "$type": "$related" }, "array"]
},
"then": [],
"else": "$related"
}
}
}
},
{
$match: {
$expr: { $in: ['$$id', '$related'] }
}
}
// sorts, projections, etc...
]
}
}
// sorts, projections, etc...
]);
Seperti yang tertulis $in
mengambil larik sebagai parameter kedua dan nilai yang Anda cari sebagai parameter pertama.