我的文档结构如下:
{
"_id" : ObjectId("57c93af8bf501124df658a0e"),
"friends" : [
{ "userid" : 14, "xxxx" : "xxx" },
{ "userid" : 13, "xxx" : "xxx" }
]
},{
"_id" : ObjectId("57c93af8bf501124df658a0e"),
"friends" : [
{ "userid" : 1, "xxxx" : "xxx" },
{ "userid" : 14, "xxx" : "xxx" }
]
}
我需要在friends数组的最后一个元素中检索具有 14 的用户标识的文档。所需的输出如下:
{
"_id" : ObjectId("57c93af8bf501124df658a0e"),
"friends" : [
{ "userid" : 14, "xxx" : "xxx" }
]
}
我按照建议尝试了use the $slice operator to get last element of array in mongodb;但我需要在子文件上这样做。
如何构建" friends.user"的查询?使用" $ arrayElemAt" $ $ redact中的$ eq到14在-1?
答案 0 :(得分:1)
运行以下聚合管道以获得所需的结果:
db.collection.aggregate([
{ "$match": { "friends.userid": 14 } },
{
"$redact": {
"$cond": {
"if": { "$eq": [{ "$arrayElemAt": [ "$friends.userid", -1 ] }, 14 ] },
"then": "$$KEEP",
"else": "$$PRUNE"
}
}
}
])