* Add a where object. For conflicting keys with the existing where object, * create an `and` clause. * @param where - Where filter
(where: Where<MT>)
| 452 | * @param where - Where filter |
| 453 | */ |
| 454 | impose(where: Where<MT>): this { |
| 455 | if (!this.where) { |
| 456 | this.where = where || {}; |
| 457 | } else { |
| 458 | this.add(where); |
| 459 | } |
| 460 | return this; |
| 461 | } |
| 462 | |
| 463 | /** |
| 464 | * Add a `like` condition |
no test coverage detected