Jerome Hurley

Results 2 issues of Jerome Hurley

> DeprecationWarning: collection.count is deprecated, and will be removed in a future version. Use collection.countDocuments or collection.estimatedDocumentCount ### Suggested fix/solution In **mongoose-datatables.js** line **82** **_Change:_** `.all([query.exec(), thisSchema.count(find)])` **_To:_** `.all([query.exec(), thisSchema.countDocuments(find)])`...

**Solution to fix error** Error: > (node:17492) DeprecationWarning: collection.count is deprecated, and will be removed in a future version. Use collection.countDocuments or collection.estimatedDocumentCount instead