Sequelize n'est pas nul

// use operator Op.ne (not equal) to make your condition
YourTableModel.findAll({
	where: {
		deletedAt: {
			[Op.ne]: null
		}
	}
});
Selfish Spider