find
vrátí kurzor
, nikoli samotné odpovídající dokumenty. Ale pro váš případ by bylo lepší použít findOne
:
collection.findOne({name:req.body.name}, function(err, doc) {
if (doc) {
// A doc with the same name already exists
}
});