"deprecationwarning: a boolean value was passed to options.operatorsaliases. this is a no-op with v5 and should be removed" Code Answer

1

this is not an error, it's simply a warning stating that passing boolean values to operatorsaliases in sequelize options will be deprecated in v5.

to remove the warning, replace the boolean value by '1' or '0' for true and false respectively.

By Marco Chiang on October 11 2022

Answers related to “deprecationwarning: a boolean value was passed to options.operatorsaliases. this is a no-op with v5 and should be removed”

Only authorized users can answer the Search term. Please sign in first, or register a free account.