查询以使用 python 在 mongoDB 中搜索 JSON 数据的特定嵌套列表

Query to search specific nested list of JSON data in mongoDB using python

我在 mongo 数据库中有以下格式的文档 - 这里outerTimestamp是string格式 Price是int格式

{
   "_id":"ObjectId(""622f950e73043487031bb3ee"")",
   "outerTimeStamp" : "14-Mar-2022",
   "filtered":{
      "data":[
         {
            "Price":14350,
            "expiryDate":"17-Mar-2022",
            "info1":{
               "Price":14350,
               "expiryDate":"17-Mar-2022",
            },
            "info2":{
               "Price":14350,
               "expiryDate":"17-Mar-2022"
            }
         },
         {
            "Price":14350,
            "expiryDate":"17-Mar-2022",
            "info1":{
               "Price":14350,
               "expiryDate":"17-Mar-2022",
            },
            "info2":{
               "Price":14350,
               "expiryDate":"17-Mar-2022"
            }
         },
         ......
         ....
     ]
    }
}

我的要求是我需要所有列表元素 [名为 data] 价格 == 14350 并且 强调文本 整个文档应该日期小于 outerTimeStamp (17-Mar-2022)

我正在使用以下查询,但它没有给我所需的输出。

data = db.find({
    '$and' : 
            [
                {'outerTimeStamp ': { '$lt': "15-Mar-2022" }},
                {'filtered.data': { '$elemMatch': { 'Price': 14350 }}}
            ]
        }, 
    {'filtered.data' : 1}
)

我也执行了以下命令,但是这个命令根本没有返回任何东西 -

 import dateutil
dateStr = '2022-03-15T00:00:00.000Z'
myDatetime = dateutil.parser.parse(dateStr)

data = db.find({
    '$and' : 
            [
                {'outerTimestamp': { '$lt': myDatetime }},
                {'filtered.data.Price': 15000 }
            ]
        }, 
    {'filtered.data' : 1})

通过这个,我得到了所有的 data 元素,尽管这个查询是关于 outerTimeStamp 条件 [ {'outerTimeStamp ': { '$lt': "15 -2022 年 3 月" }} ]

我将不胜感激

问候

试试这个

data = db.find({
      '$and' : [{'outerTimeStamp': { '$lt': "15-Mar-2022" }},
                {'filtered.data.Price': 14350 } ]}, 
      {'filtered.data' : 1})

您的查询只需稍作改动:

data = db.find({
'$and' : 
        [
            {'outerTimeStamp ': { '$lt': "15-Mar-2022" }},
            {'filtered.data': { '$elemMatch': { 'Price': 14350 }}}
        ]
    }, 
    {'filtered.data.$' : 1}
)

参考:https://docs.mongodb.com/manual/reference/operator/projection/positional/#mongodb-projection-proj.-