MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Agrégation en Golang mgo pour Mongodb

En supposant que c est votre collection :

pipe := c.Pipe([]bson.M{{"$match": bson.M{"name":"John"}}})
resp := []bson.M{}
err := pipe.All(&resp)
if err != nil {
  //handle error
}
fmt.Println(resp) // simple print proving it's working

Références GoDoc :