await model.countDocuments({ name: 'Florin' })
await model.countDocuments({status:1})
model.estimatedDocumentCount();
Adventure.countDocuments({ type: 'jungle' }, function (err, count) {
console.log('there are %d jungle adventures', count);
});