Aggregation in Golang mgo for Mongodb

前端 未结 2 1502
醉话见心
醉话见心 2021-02-14 04:45

Anybody knows what’s the equivalent of aggregate command we use in mongodb shell for golang mgo/bson?

Something like that:

aggregate([{$match:{my_id:Obje         


        
相关标签:
2条回答
  • 2021-02-14 05:27

    Sample Code:

    pipe := c.Pipe([]bson.M{bson.M{"$match": bson.M{"type": "stamp"}},
            bson.M{"$group": bson.M{"_id": "$userid",
                "count": bson.M{"$sum": "$noofsr"}}}})
    
    resp := []bson.M{}
    iter := pipe.Iter()
    err = iter.All(&resp)
    

    Note:

    Please note that the line should end with (,) if you are not breaking in (,) it will throw error message even if your query is correct.

    Output:

    {
        "transactions": [
            {
                "_id": "three@four.com",
                "count": 10
            },
            {
                "_id": "one@two.com",
                "count": 12
            }
        ]
    }
    
    0 讨论(0)
  • 2021-02-14 05:29

    Assuming that c is your 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
    

    GoDoc references:

    • Collection.Pipe documentation
    • Pipe and its methods
    0 讨论(0)
提交回复
热议问题