Select a document from Mongodb by providing param in NodeJs
I want to request a certain userId via NodeJs but I always receive all documents from MongoDb, independent of the userId I provide. This is my route: router.get('/wallet/showWallet/', walletController.showWallet) Controller: const showWallet = async(req,res)=>{ try { let user = req.query.userId;…