We had this constant error showing up in our development logs :
squelize deprecated String based operators are now deprecated. Please use Symbol based operators for better security, read more athttp://docs.sequelizejs.com/manual/tutorial/querying.html#operators node_modules/sequelize/lib/sequelize.js:236:13
On simple google search, lead me to this huge issue on GitHubhttps://github.com/sequelize/sequelize/issues/8417.
Conversation over there is huge, there seems to be many potentials solutions, the ones which collaborators most suggested was to disable operator aliasing. So any string based operator will be disabled without any aliases instead symbol based built in operators will be used. This prevents cross site attacks.
constsequelize=newSequelize(config.databaseUrl,{operatorsAliases:false,})
Follow here for even in detail explanation.
Top comments(0)
For further actions, you may consider blocking this person and/orreporting abuse