Sort sequelize.js query by date

Viewed 50038
Post
  .findAll({where: {tag: 'news'}, limit: 10})
  .success(function(result) { ... })

How to insert the condition of sorting by date in my query with not using sequelize.query like

.findAll({ limit: 10, sort: [updatedAt, descending]})
3 Answers
Related