MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Agregação em Golang mgo para Mongodb


Supondo que c é a sua coleção:
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

Referências do GoDoc: