Vous pouvez faire quelque chose comme ça pour obtenir uniquement les informations d'identification existantes.
var res = [];
db.collection.find({credentials : {$exists:true}}).forEach(function(document){ res.push(document.credentials})
Ensuite, vous pouvez rappeler le tableau :callback(err, res)
Cela vous aide-t-il ?