Nie ma się czym obejść, to jest oczekiwane zachowanie. cursor.count()
zwraca obietnicę, jeśli chcesz wartość, musisz użyć .then
, np.
DbConnection({}).then(
db => {
let cursor = db.collection('bar').find();
return cursor.count();
}
}).then(
count => {
console.log(count);
},
err => {
console.log(err);
}
);
lub uproszczony
DbConnection({}).then(db => db.collection('bar').find().count()).then(
count => console.log(count),
err => console.log(err)
);