* An OR query * * @see * Model.findAll * * @param {...string|object} args Each argument will be joined by OR * @since v2.0.0-dev3 * @memberof Sequelize * * @returns {Sequelize.or}
(...args)
| 1089 | * @returns {Sequelize.or} |
| 1090 | */ |
| 1091 | static or(...args) { |
| 1092 | return { [Op.or]: args }; |
| 1093 | } |
| 1094 | |
| 1095 | /** |
| 1096 | * Creates an object representing nested where conditions for postgres/sqlite/mysql json data-type. |
no outgoing calls
no test coverage detected