mongodb aggregate example
Example 1: how to write the aggragation in mongodb
> db.mycol.aggregate([{$group : {_id : "$by_user", num_tutorial : {$sum : 1}}}])
{ "_id" : "tutorials point", "num_tutorial" : 2 }
{ "_id" : "Neo4j", "num_tutorial" : 1 }
>
Example 2: MONGODB AGGREGATION tutorials
db.stocks.aggregate([
{ $match: { "price": 2000 } }
])
Example 3: MONGODB AGGREGATION tutorials
db.stocks.find().pretty()
Example 4: how to use mongoose aggregate
const agg = Model.aggregate([{ $match: { age: { $gte: 25 } } }]);
for await (const doc of agg) {
console.log(doc.name);
}
Example 5: how to use mongoose aggregate
new Aggregate([{ $match: { _id: '00000000000000000000000a' } }]);
new Aggregate([{ $match: { _id: mongoose.Types.ObjectId('00000000000000000000000a') } }]);