projectStage := bson.D{
{"$project", bson.D{
{"_id", 0},
{"name", "$_id"},
{"total", 1},
{"totalPagu", 1},
{"idpagu", 1},
{"pdn", bson.D{
{"$round", bson.D{
{"pdn", 1},
}},
},
}},
},
}
I get an error here message:
$round only supports numeric types, not object
How can I reslove this?