我有两个收藏品; users
和communities
。我的用户可以链接到许多社区,因此我在用户模式中将linkedCommunities
作为数组:
const userSchema = new Schema({
linkedCommunities: [
{
type: mongoose.Schema.ObjectId,
ref: 'Community'
}
]
});
在我的communities
视图中,我想显示链接到每个社区的users
的数量,因此它会显示如下内容:
| Community | Number of users |
| --------- | --------------- |
| Community 1 | 45 |
| Community 2 | 78 |
| Community 4 | 107 |
理想情况下,当我在Community
模型上查找时,我想要一个名为linkedUserCount
的字段。
我确信我可以使用aggregate
以某种方式实现这一点,但我正在努力寻找合适的管道运营商和订单。
答案 0 :(得分:2)
这里也许可以帮助你,
users.aggregate([
{
$lookup:
{
from: "Community",
localField: "linkedCommunities",
foreignField: "_id",
as: "linkedcommunities"
}}
,{
$unwind: "$linkedCommunities"
},
{
$group : {
_id : "$linkedCommunities",
count: { $sum: 1 }
}
},
{
$project: {
_id: 0,
community: "$_id",
count: "$count"
}
}]}
答案 1 :(得分:1)
您可以使用以下mongodb查询来获得所需的结果:
db.users.aggregate( [
{
$unwind : "$linkedCommunities"
},
{
$group : {
_id : "$linkedCommunities",
count: { $sum: 1 }
}
},
{
$project: {
_id: 0,
community: "$_id",
count: "$count"
}
}
] )
尝试一下,如果您有任何问题,请告诉我。