* An OR query * * @see * {@link Model.findAll} * * @param {...string|object} args Each argument will be joined by OR * @since v2.0.0-dev3 * @memberof Sequelize * * @returns {Sequelize.or}
(...args)
| 1007 | * @returns {Sequelize.or} |
| 1008 | */ |
| 1009 | static or(...args) { |
| 1010 | return { [Op.or]: args }; |
| 1011 | } |
| 1012 | |
| 1013 | /** |
| 1014 | * Creates an object representing nested where conditions for postgres/sqlite/mysql json data-type. |
no outgoing calls
no test coverage detected