Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
models. findAll({ where: { createdAt: ... } .then(result => { console.log(result) }) .catch(error => { console.log(error) })
const { Op } = Sequelize; const threshold = new Date(Date.now()-30*24*60*60*1000); models. findAll({ where: { createdAt: { [Op.lt]: threshold, }, }}) .then(console.log) .catch(console.error);