gpt4 book ai didi

node.js - Mongoose:嵌套数组结构中的聚合查询

转载 作者:太空宇宙 更新时间:2023-11-03 23:06:43 24 4
gpt4 key购买 nike

我在 Mongo DB 查询方面遇到了一个小问题。

我有一个名为“Answers”的集合,其结构如下

{
"_id": ObjectId("560acfcb904a29446a6d2617"),
"path_id": ObjectId("560acae1904a29446a6d2610"),
"step_id": "kids",
"user_id": ObjectId("559ae27684ff12e88d194eb7"),
"answers": [
{
"id": "kids_q",
"question": "Do you have kids?",
"answer": "No"
}
]
}

如您所见,answers 是一个数组,它可以有一个或多个对象,但始终是一个数组。

首先,我想获取step_id中的答案总数

我使用以下聚合查询得到了这一点

Answer.aggregate( {
$match: {
'path_id': {
$eq: path_id
},
'step_id': {
$eq: step_id
},
''

}
}, {
$group: {
_id: {
step_id: '$step_id'
},
count: {
$sum: 1
}
}
}, function( err, results ) {
if ( err ) {
deferred.reject( err );
}
deferred.resolve( results );
} );

效果很好。

其次,我想知道有多少答案与问题和答案相匹配。

让我们以你有 child 吗?问题为例,我想知道有多少个答案是,在命令行中运行查询我得到了正确的结果结果:

db.answers.find( {
path_id: ObjectId( '560acae1904a29446a6d2610' ),
'answers.0.question': 'Do you have kids?',
'answers.0.answer': 'Yes'
} )

我想使用 Mongoose 将该查询转换为聚合查询,并避免对数组 answers.0.question 进行硬编码,因为该答案可以存储在随机索引中,也许存储在索引中1,可能在索引 7 中。

感谢任何帮助。

谢谢

最佳答案

使用$unwind然后 $match 只过滤您正在寻找的问题的答案:

var steps = [
{
$match: {
'path_id': ObjectId("560acae1904a29446a6d2610"),
'step_id': 'kids'
}
},
{ $unwind : "$answers" },
{
$match: {
"answers.question": 'Do you have kids?'
}
},
{
$group: {
_id: '$answers.answer',
count: {
$sum: 1
}
}
}
];
Answer.aggregate(steps, function( err, results ) {
//do whatever you want with the results
} );

关于node.js - Mongoose:嵌套数组结构中的聚合查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32897511/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com