MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie halte ich Dokumente in Aggregation mit $unwind

Sie brauchen $unwind nicht überhaupt. Einfaches $match in der Pipeline ist genug:

pipeline = [
    {
        "$match" : {
            "$or" : [
                {
                    "goes.fridays.fr" : 700
                },
                {
                    "goes.special" : {
                        "$elemMatch" : {
                            "date" : "2010-01-01",
                            "fr" : 1000
                        }
                    }
                }
            ]
        }
    }
]

db.students.aggregate(pipeline)

Dies ist auch ohne Aggregationsframework problemlos möglich.

query = {
    "$or" : [
        {
            "goes.fridays.fr" : 700
        },
        {
            "goes.special" : {
                "$elemMatch" : {
                    "date" : "2010-01-01",
                    "fr" : 1000
                }
            }
        }
    ]
}

db.students.find(query)