I want to use sequelize.js to query a model for records with a contains restraint. How do I do that?
This is what I have right now:
Assets .findAll({ l
If you are using sequlize better to use [Op.iLike]: `%${request.body.query}%` and you can forget about the sequlize functions.
[Op.iLike]: `%${request.body.query}%`