Bergantung pada kebutuhan sistem Anda, saya pikir desain model dapat disederhanakan dengan membuat hanya satu koleksi yang menggabungkan semua atribut di collection1
dan collection2
. Sebagai contoh:
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var accountSchema = new Schema({
moneyPaid:{
type: Number
},
isBook: {
type: Boolean,
}
}, {collection: 'account'});
var Account = mongoose.model('Account', accountSchema);
di mana Anda kemudian dapat menjalankan pipa agregasi
var pipeline = [
{
"$match": { "isBook" : true }
},
{
"$group": {
"_id": null,
"total": { "$sum": "$moneyPaid"}
}
}
];
Account.aggregate(pipeline, function(err, results) {
if (err) throw err;
console.log(JSON.stringify(results, undefined, 4));
});
Namun, dengan desain skema saat ini, Anda harus terlebih dahulu mendapatkan id untuk koleksi1 yang memiliki nilai sebenarnya isBook di collection2
dan kemudian gunakan daftar id itu sebagai $match
kueri di collection1
agregasi model, seperti berikut:
collection2Model.find({"isBook": true}).lean().exec(function (err, objs){
var ids = objs.map(function (o) { return o.coll_id; }),
pipeline = [
{
"$match": { "_id" : { "$in": ids } }
},
{
"$group": {
"_id": null,
"total": { "$sum": "$moneyPaid"}
}
}
];
collection1Model.aggregate(pipeline, function(err, results) {
if (err) throw err;
console.log(JSON.stringify(results, undefined, 4));
});
});