$count
Query
Parameter's
var count = await Member.$count({
$where: {
userId: {
$endsWith: '9'
}
},
$options: {
$logging(sql, benchmark) {
console.log(sql,benchmark);
},
}
});Last updated