MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Mongoose:Dateidokumente können ohne das Datenfeld nicht aus der .chunk-Sammlung abgerufen werden

Ich glaube, ich habe das herausgefunden. Dies ist durch die Methode "distinct()" möglich :

// Get the distinct file IDs that correspond to each upload.
db.collection('media.chunks').distinct('files_id', function(error, results){
    console.log('Distinct file ID results',results);
    return res.status(200).send();
});