PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Ordinazione dei risultati di modelli nidificati caricati in modo ansioso in Node Sequelize

Credo che tu possa fare:

db.Page.findAll({
  include: [{
    model: db.Gallery
    include: [{
      model: db.Artwork
    }]
  }],
  order: [
    // sort by the 'order' column in Gallery model, in descending order.

    [ db.Gallery, 'order', 'DESC' ], 


    // then sort by the 'order' column in the nested Artwork model in a descending order.
    // you need to specify the nested model's parent first.
    // in this case, the parent model is Gallery, and the nested model is Artwork

    [ db.Gallery, db.ArtWork, 'order', 'DESC' ]
  ]
})

Ci sono anche molti modi diversi o cose che puoi fare al momento dell'ordine. Leggi di più qui:https://sequelize.org/master/manual/model-querying-basics.html#ordering-and-grouping