5

我在其中得到了一个聚合查询$lookup

pipeline = [{
    '$match': {
        '_id': ObjectId(layout_id)
    }
}, {
    '$lookup': {
        'from': 'units',
        'localField': 'unit_id',
        'foreignField': '_id',
        'as': 'layout_unit'
    }
}, {
    '$replaceRoot': {
        'newRoot': {
            '$mergeObjects': [{
                '$arrayElemAt': ["$layout_unit", 0]
            }]
        }
    }
}, {
    '$project': {
        'layout_unit': 0
    }
}, {
    '$lookup': {
        'from': 'users',
        'localField': 'user_id',
        'foreignField': '_id',
        'as': 'unit_user'
    }
}, {
    '$unwind': '$unit_user'
}]

我想使用mongomock. 这里的问题是,从 3.9.0 版开始,它不支持$lookup聚合。

NotImplementedError: Although '$lookup' is a valid operator for the aggregation pipeline, it is currently not implemented in Mongomock.

有解决方法吗?或者也许是替代解决方案mongomock

4

1 回答 1

0

可能晚了几个月,但由于我的计算机中的旧版本,我发现现在 lib 发布了该操作员的实现。

拉取请求

于 2018-11-13T14:29:50.370 回答