I'm using sequelize with Node.js. I'm trying to use Sequelize.op request. But it doesn't work, this is my code :
var Sequelize = require('sequelize');
const Op = Sequelize.Op;
const operatorsAliases = {
$eq: Op.eq
}
This is the error in the node console :
Do you have any idea ?
Thank you
