首页 > 解决方案 > 过滤 mongo 文档和项目特定字段

问题描述

我是 MongoDb 的初学者。尝试了很多,但停留在一个查询上。请在下面找到一个示例 mongo 文档:

{ 
    "_id" : ObjectId("5dc158a60566e14c5190db72"), 
    "hotel_id" : NumberInt(45), 
    "plans" : [
        {
            "plan_type" : "AP", 
            "sub_plans" : [
                {
                    "channels" : [
                        {
                            "channel_name" : "default", 
                            "status" : "Pending", 
                            "is_active" : false, 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "non_veg_available" : null, 
                            "oyo_commission" : 20.0, 
                            "ep_price_reduction" : null, 
                            "salesforce_id" : "a0Y280000023LFwEAM", 
                            "breakfast_start_time" : null, 
                            "breakfast_end_time" : null, 
                            "lunch_start_time" : null, 
                            "lunch_end_time" : null, 
                            "dinner_start_time" : null, 
                            "dinner_end_time" : null, 
                            "created_at" : NumberLong(1468577718000), 
                            "updated_at" : NumberLong(1481074321000), 
                            "prices" : [
                                {
                                    "occupancy" : NumberInt(1), 
                                    "guest_type" : null, 
                                    "veg_price" : NumberInt(400), 
                                    "non_veg_price" : null, 
                                    "additional_non_veg_price" : null, 
                                    "discount" : null
                                }
                            ]
                        }, 
                        {
                            "channel_name" : "default", 
                            "status" : "Pending", 
                            "is_active" : false, 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "non_veg_available" : null, 
                            "oyo_commission" : 20.0, 
                            "ep_price_reduction" : null, 
                            "salesforce_id" : "a0W28000004GqL4", 
                            "breakfast_start_time" : "7:30", 
                            "breakfast_end_time" : "10:00", 
                            "lunch_start_time" : "12:30", 
                            "lunch_end_time" : "15:00", 
                            "dinner_start_time" : "19:00", 
                            "dinner_end_time" : "22:30", 
                            "created_at" : NumberLong(1505516604000), 
                            "updated_at" : NumberLong(1505516604000), 
                            "prices" : [
                                {
                                    "occupancy" : NumberInt(1), 
                                    "guest_type" : null, 
                                    "veg_price" : NumberInt(425), 
                                    "non_veg_price" : NumberInt(425), 
                                    "additional_non_veg_price" : 0.0, 
                                    "discount" : null
                                }
                            ]
                        }, 
                        {
                            "channel_name" : "default", 
                            "status" : "Pending", 
                            "is_active" : false, 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "non_veg_available" : null, 
                            "oyo_commission" : 20.0, 
                            "ep_price_reduction" : null, 
                            "salesforce_id" : "a0W28000004GqL4", 
                            "breakfast_start_time" : "7:30", 
                            "breakfast_end_time" : "10:00", 
                            "lunch_start_time" : "12:30", 
                            "lunch_end_time" : "15:00", 
                            "dinner_start_time" : "19:00", 
                            "dinner_end_time" : "22:30", 
                            "created_at" : NumberLong(1505709978000), 
                            "updated_at" : NumberLong(1542162045000), 
                            "prices" : [
                                {
                                    "occupancy" : NumberInt(1), 
                                    "guest_type" : null, 
                                    "veg_price" : NumberInt(425), 
                                    "non_veg_price" : NumberInt(425), 
                                    "additional_non_veg_price" : 0.0, 
                                    "discount" : null
                                }
                            ]
                        }
                    ], 
                    "sub_plan_type" : "Standard", 
                    "is_sub_plan_default" : false
                }
            ]
        }, 
        {
            "plan_type" : "EP", 
            "sub_plans" : [
                {
                    "channels" : [
                        {
                            "channel_name" : "default", 
                            "status" : "Pending", 
                            "is_active" : false, 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "non_veg_available" : null, 
                            "oyo_commission" : null, 
                            "ep_price_reduction" : NumberInt(80), 
                            "salesforce_id" : "a0Y280000023LG1EAM", 
                            "breakfast_start_time" : null, 
                            "breakfast_end_time" : null, 
                            "lunch_start_time" : null, 
                            "lunch_end_time" : null, 
                            "dinner_start_time" : null, 
                            "dinner_end_time" : null, 
                            "created_at" : NumberLong(1468577718000), 
                            "updated_at" : NumberLong(1481074321000), 
                            "prices" : [
                                {
                                    "occupancy" : NumberInt(1), 
                                    "guest_type" : null, 
                                    "veg_price" : null, 
                                    "non_veg_price" : null, 
                                    "additional_non_veg_price" : null, 
                                    "discount" : null
                                }
                            ]
                        }
                    ], 
                    "sub_plan_type" : "Standard", 
                    "is_sub_plan_default" : false
                }
            ]
        }, 
        {
            "plan_type" : "MAP", 
            "sub_plans" : [
                {
                    "channels" : [
                        {
                            "channel_name" : "default", 
                            "status" : "Pending", 
                            "is_active" : false, 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "non_veg_available" : null, 
                            "oyo_commission" : 20.0, 
                            "ep_price_reduction" : null, 
                            "salesforce_id" : "a0Y280000023LG6EAM", 
                            "breakfast_start_time" : null, 
                            "breakfast_end_time" : null, 
                            "lunch_start_time" : null, 
                            "lunch_end_time" : null, 
                            "dinner_start_time" : null, 
                            "dinner_end_time" : null, 
                            "created_at" : NumberLong(1468577718000), 
                            "updated_at" : NumberLong(1481074321000), 
                            "prices" : [
                                {
                                    "occupancy" : NumberInt(1), 
                                    "guest_type" : null, 
                                    "veg_price" : NumberInt(200), 
                                    "non_veg_price" : null, 
                                    "additional_non_veg_price" : null, 
                                    "discount" : null
                                }
                            ]
                        }, 
                        {
                            "channel_name" : "default", 
                            "status" : "Pending", 
                            "is_active" : false, 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "non_veg_available" : null, 
                            "oyo_commission" : 20.0, 
                            "ep_price_reduction" : null, 
                            "salesforce_id" : "a0W28000004GqL4", 
                            "breakfast_start_time" : "7:30", 
                            "breakfast_end_time" : "10:00", 
                            "lunch_start_time" : "12:30", 
                            "lunch_end_time" : "15:00", 
                            "dinner_start_time" : "19:00", 
                            "dinner_end_time" : "22:30", 
                            "created_at" : NumberLong(1505709978000), 
                            "updated_at" : NumberLong(1541476001000), 
                            "prices" : [
                                {
                                    "occupancy" : NumberInt(1), 
                                    "guest_type" : null, 
                                    "veg_price" : NumberInt(225), 
                                    "non_veg_price" : NumberInt(225), 
                                    "additional_non_veg_price" : 0.0, 
                                    "discount" : null
                                }
                            ]
                        }
                    ], 
                    "sub_plan_type" : "Standard", 
                    "is_sub_plan_default" : false
                }
            ]
        }
    ]
}

我只想要选定的字段,如果:酒店 id 是 45,入住价格 1,is_active 是 false,状态是 Pending 并且计划类型在 ['AP','EP'] 中。期望的输出:

{ 
    "_id" : ObjectId("5dc158a60566e14c5190db72"), 
    "hotel_id" : NumberInt(45), 
    "plans" : [
        {
            "plan_type" : "AP", 
            "sub_plans" : [
                {
                    "channels" : [
                        {
                            "channel_name" : "default", 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "prices" : [
                                {
                                    "veg_price" : NumberInt(425)
                                }
                            ]
                        }, 
                        {
                            "channel_name" : "default", 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "prices" : [
                                {
                                    "veg_price" : NumberInt(425)
                                }
                            ]
                        }
                    ], 
                    "sub_plan_type" : "Standard", 
                    "is_sub_plan_default" : false
                }
            ]
        }, 
        {
            "plan_type" : "EP", 
            "sub_plans" : [
                {
                    "channels" : [
                        {
                            "channel_name" : "default", 
                            "start_date" : NumberLong(1468521000000), 
                            "end_date" : NumberLong(1901125800000), 
                            "prices" : [
                                {
                                    "veg_price" : null, 
                                }
                            ]
                        }
                    ], 
                    "sub_plan_type" : "Standard", 
                    "is_sub_plan_default" : false
                }
            ]
        }, 
    ]
}

我的查询:

db.collection.find({
  "hotel_id": 45,
  "plans.plan_type": {$in : ["AP", "EP"]},
  "plans.sub_plans.channels.prices.occupancy": 1,
  "plans.sub_plans.channels.is_active": false,
  "plans.sub_plans.channels.status": "Pending"
})

注意- 我只需要搜索一个酒店 ID 为 45 的文档。请帮忙。提前致谢。

标签: mongodbaggregation

解决方案


您需要应用聚合。

db.collection_name.aggregate([

    {
        "$match":{
            "hotel_id": 45,
            "plans.plan_type": "AP",
            "plans.sub_plans.channels.prices.occupancy": 1,
            "plans.sub_plans.channels.is_active": false,
            "plans.sub_plans.channels.status": "Pending"
        }
    },
    {
        "$project":{
            "_id":"$_id",
            "hotel_id":"$hotel_id",
            "plans":"plans"
        }
    }
])


推荐阅读