where not condition in sequelize code example
Example 1: sequelize not equal
const { Op } = require("sequelize");
column: {[Op.ne]: value},
Example 2: SEQUELIZE OR
"SELECT * FROM Student WHERE LastName='Doe' OR FirstName in ("John","Jane") OR Age>18"