Není co obejít, toto je očekávané chování. cursor.count()
vrátí příslib, pokud chcete hodnotu, musíte použít .then
, např.
DbConnection({}).then(
db => {
let cursor = db.collection('bar').find();
return cursor.count();
}
}).then(
count => {
console.log(count);
},
err => {
console.log(err);
}
);
nebo zjednodušeně
DbConnection({}).then(db => db.collection('bar').find().count()).then(
count => console.log(count),
err => console.log(err)
);