如何在Mongo中进行这种聚合?

时间:2018-12-25 20:19:47

标签: python mongodb nosql mongoengine

我有带有集合的MongoDB 4.x,其中包含这样的文档

image

如何进行汇总,使其仅返回bot-field,其中_id为X? 我尝试使用$ project:

{ _id: 0, bot: {$filter: { input: '$clusters.bots', as: 'bot', cond: {$eq: ['$$bot._id', 'X']} }} }

0 个答案:

没有答案