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

Come $ setDifference nell'array e nell'oggetto usando Mongo DB

Devi correggere quella seconda aggregazione e ottenere tutti gli UPIDs come matrice. Per raggiungere questo obiettivo puoi utilizzare $cond e basato su $type restituire un array o utilizzare $objectToArray per eseguire la conversione, prova:

db.Groups.aggregate([
    {
        $project: {
            students: {
                $cond: [ 
                    { $eq: [ { $type: "$members.regularStudent" }, "array" ] },
                    "$members.regularStudent",
                    { $map: { input: { "$objectToArray": "$members.regularStudent" }, as: "x", in: "$$x.v" } }
                ]
            }
        }
    },
    {
        $unwind: "$students"
    },
    {
        $group: {
            _id: null,
            UPIDs: { $addToSet: "$students" }
        }
    },
    {
        $project: {
            members: {
                $setDifference: [ userProductUPIDs , "$UPIDs" ]
            },
            _id : 0
        }
    }
])