如何根据某些特定条件检索深度嵌套数组 春天的 mongodb



我有一个名为abc的集合(假设(,在这个集合中,我有多个结构如下的文档:

{
"customerId":"Id",
"contract":[
{
"contractId":"con1",
"contractName":"conName1",
"pricing":[
{
"pricingName":"priceName1",
"billProfile":[
{
"billCode":"code1",
"billName":"Name1"
},
{
"billCode":"code2",
"billName":"Name2"
}
]
},
{
"pricingName":"priceName2",
"billProfile":[
{
"billCode":"code3",
"billName":"Name3"
}
]
}
]
},
{
"contractId":"con2",
"contractName":"conName2",
"pricing":[
{
"pricingName":"priceName3",
"billProfile":[
{
"billCode":"code4",
"billName":"Name4"
},
{
"billCode":"code5",
"billName":"Name5"
}
]
},
{
"pricingName":"priceName4",
"billProfile":[
{
"billCode":"code6",
"billName":"Name6"
}
]
}
]
}
]
}

对于此类多个文档,我想搜索特定的账单代码,然后返回该账单代码的相应 billProfile、定价和合同详细信息。例如,如果我搜索 billCode code5,那么数据库中的相应输出应该是:

{
"customerId":"Id",
"contract":[
{
"contractId":"con2",
"contractName":"conName2",
"pricing":[
{
"pricingName":"priceName3",
"billProfile":[
{
"billCode":"code5",
"billName":"Name5"
}
]
}
]
}
]
}

到目前为止我尝试过:

使用位置运算符 $,但它只能用于深入文档的一个级别。尝试检索具有 billCode 的特定合同,但结果集中还包括错误的定价和账单配置文件。

我知道我们可以将聚合用于这件事,但我不知道如何在如此复杂的检索中执行聚合。我需要在我的 java spring 项目中使用聚合来从数据库中获取数据,然后将其存储在我的类模型中。知道如何在此数据集上执行聚合吗?

您可以使用$filter$map

注意:我没有用Java测试过。但它的工作MongoDB GUI

db.getCollection('customer').aggregate([ 
{ "$project": {
"_id":1,
"customerId" :1,
"contract": {
"$filter": {
"input": {
"$map": {
"input": "$contract",
"as": "con",
"in": {
"pricing": {
"$filter": {
"input": {
"$map": {
"input": "$$con.pricing",
"as": "pric",
"in" : {
"billProfile" : {
"$filter" : {
"input" : "$$pric.billProfile",
"as" : "billProf",
"cond": {
"$eq": [ "$$billProf.billCode", "code5" ] 
}
}
}
}
}
},
"as": "pric",
"cond": {
"$and": [
{ "$gt": [ { "$size": "$$pric.billProfile" }, 0 ] }
]
}
}
}             
}
}
},
"as": "con",
"cond": {
"$and": [
{ "$gt": [ { "$size": "$$con.pricing" }, 0 ] }
]
}
}
}
}
}
]
)

相关内容

  • 没有找到相关文章

最新更新