忘れがちなのでメモがてら。
Sequelizeでこんなメッセージが表示される場合(V4以上?)がある。
console
sequelize deprecated String based operators are now deprecated. Please use Symbol based operators for better security,
where句で使う演算子(operators)を文字列($gt
とか$like
とか)では無くシンボル演算子(Sequelize.Op.gt
とかSequelize.Op.like
とか)を使いなさいとの事。
このままでも動くけどセキュリティ的に対応したほうが良いよーって事なので、
http://docs.sequelizejs.com/manual/tutorial/querying.html#operators
を参考に対応する。