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

Wie man Filialdokumente in Mungo sortiert, auswählt und abfragt

Sie können Ihr $project ändern um auch die Ausgabe umzugestalten, um die gewünschte Struktur bereitzustellen:

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

Ausgabe:

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