MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

MongoDB Mongoose interroga una matrice profondamente nidificata di documenti secondari per intervallo di date

Il problema qui è che WorkDoneBy è un array nidificato in un altro array (ItemReport ). Quindi singolo $filter non è sufficiente poiché è necessario ripetere due volte. Puoi aggiungere $map per scorrere l'array esterno:

db.records.aggregate([
    {
        "$project": {
            "ItemReport": {
                $map: {
                    input: "$ItemReport",
                    as: "ir",
                    in: {
                        WorkDoneBy: {
                            $filter: {
                                input: "$$ir.WorkDoneBy",
                                as: "value",
                                cond: {
                                    "$and": [
                                        { "$ne": [ "$$value.DateCompleted", null ] },
                                        { "$gt": [ "$$value.DateCompleted", new Date("2017-01-01T12:00:00.000Z") ] },
                                        { "$lt": [ "$$value.DateCompleted", new Date("2018-12-31T12:00:00.000Z") ] }
                                    ]
                                }
                            }
                        }
                    }
                }
            }
        }
    }
])