skip to Main Content

MongoDB – TypeError: Cannot read properties of null (reading 'collection') – Javascript

indexHelpers.js var db = require("../config/connection"); var collections = require("../config/collections"); var ObjectId = require("mongodb").ObjectId; module.exports = { addPerson: (personDetails) => { return new Promise((resolve, reject) => { db.get().collection(collections.USER_DETAILS) .insertOne(personDetails) .then((details) => { resolve(details); }); }); }, }; In the indexhelpers.js the…

VIEW QUESTION
Back To Top
Search