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

Aggregazione di Golang mongodb

Non puoi applicare $lookup all'array direttamente, ma puoi $unwind prima.

Senza documenti di esempio, il frammento di codice di seguito è piuttosto un approccio generale:

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)

Dovrei menzionare che l'aggregazione/pipe restituisce bson.M , oggetti Utente non idratati. Dopotutto Mongo non è un database relazionale.