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

Golang Mongodb-Aggregation

Sie können $lookup nicht anwenden direkt anordnen, aber Sie können $unwind es zuerst.

Ohne Beispieldokumente ist das folgende Code-Snippet eher ein allgemeiner Ansatz:

pipeline := []bson.M{ 
    bson.M{"$match": bson.M{"_id": userId }},
    bson.M{"$unwind": "$otherUsersIdsArrayName"},
    bson.M{
        "$lookup": bson.M{ 
            "from": userCollectionName, 
            "localField": otherUsersIdsArrayName, 
            "foreignField": "id", 
            "as": "friend"
        }
    },
    bson.M{"$unwind": "$friend"},
    bson.M{
        "$group": bson.M{
            "_id": "id",
            "id": bson.M{"$first": "$id"},
            "name": bson.M{"$first": "$name"},
            "avatar": bson.M{"$first": "$avatar"},
            otherUsersIdsArrayName: bson.M{ "$push": "$friend"}
        }
    }
}
pipe := collection.Pipe(pipeline)
resp := []bson.M{}
err = pipe.All(&resp)

Ich sollte erwähnen, dass Aggregation/Pipe bson.M zurückgibt , nicht hydratisierte Benutzerobjekte. Mongo ist schließlich keine relationale Datenbank.