Продолжение не является нулевым
// use operator Op.ne (not equal) to make your condition
YourTableModel.findAll({
where: {
deletedAt: {
[Op.ne]: null
}
}
});
Selfish Spider