I have tried using find and findOne and both are not returning a document. find is returning an empty array while findOne
find
findOne
Had kinda same problem. The solutions above didnt work for me. My app never returns error even if the query is not found. It returns empty array. So i put this in my code:
if(queryResult.length==0) return res.status(404).send("not found");