Er is niets om rond te komen, dit is het verwachte gedrag. cursor.count()
geeft een belofte terug, als je de waarde wilt, moet je .then
. gebruiken , bijv.
DbConnection({}).then(
db => {
let cursor = db.collection('bar').find();
return cursor.count();
}
}).then(
count => {
console.log(count);
},
err => {
console.log(err);
}
);
of vereenvoudigd
DbConnection({}).then(db => db.collection('bar').find().count()).then(
count => console.log(count),
err => console.log(err)
);