Count Documents in a Collection

You can count the number of documents in a collection in your WorqDB Database.

db.collection('NodeJSDb1').getCount().then((response) => {
    console.log(response);
}).catch((error) => {
    console.log(error);
});

Count Documents in a Collection with a Key Value

You can count the number of documents in a collection in your WorqDB Database in which a key value is Not Null.

db.collection('NodeJSDb1').getCount("age").then((response) => {
    console.log(response);
}).catch((error) => {
    console.log(error);
});