猫鼬查询通配符

时间:2018-12-09 12:25:44

标签: javascript node.js mongodb mongoose

我在数据库中有这个集合:

const events = 
[{
    "_id": {
        "$oid": "5c0d069b3834614c67708a64"
    },
    "attendants": {
        "seekers": [],
        "employers": [
            {
                "id": {
                    "$oid": "5c0cda7a7c1604102d9c6648"
                },
                "boothVisits": []
            }
        ]
    },
    "isFinished": false,
}, ... more events]

我想选择attendants.employers.'wildcard'.id.equals(user._id)所在的事件。现在如何使用通配符?我找不到有关它的任何信息。如果还有其他方法,我也全力以赴。

0 个答案:

没有答案