LoginSignup
7
5

More than 5 years have passed since last update.

Sequelizeでoperatorsのdeprecatedが出た時

Posted at

忘れがちなのでメモがてら。

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
を参考に対応する。

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5