0
updatedAt
に基づいて検索するにはどうすればよいですか? date
の後にすべてのレコードを昇順にしたいと思います。Sequelize:updatedAtの日付後にレコードを取得
var date = "2016-06-18 05:18:27"
Person.findAll({
where: {
updatedAt: `> date` //greater than this date?
},
orderBy: '`group` DESC'
}).then((people) => {
})