MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come ordinare, selezionare e interrogare il documento secondario in mangusta

Puoi cambiare il tuo $project per rimodellare anche l'output per fornire la struttura che stai cercando:

Story.aggregate([
    { $unwind: "$comments" },
    { $project: {
        author: '$comments.author',
        content: '$comments.content',
        _id: '$comments._id'
    }},
    { $sort: {author: -1}}
], function (err, result) { ...

Uscita:

[ { _id: 541c2776149002af52ed3c4a,
    author: 'B author',
    content: '2 Content' },
  { _id: 541c2776149002af52ed3c4b,
    author: 'A author',
    content: '1 Content' } ]