我有一个文档,其中存储了一个ID数组,这些ID引用了另一个集合:
{
title: 'Title of the document',
categories: [
{ _id: 1 },
{ _id: 2 },
{ _id: 3 },
{ _id: 4 },
]
}
现在,我希望能够找到具有至少一个我要传递到数组中的类别之一的所有文档:
categories: [1, 3, 4]
我搜索了stackoverflow和MongoDB文档,但没有找到实现方法。