(
cond: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string | RawQueryFragment,
params?: any[],
)
| 1641 | */ |
| 1642 | andWhere(cond: string | RawQueryFragment, params?: any[]): this; |
| 1643 | andWhere( |
| 1644 | cond: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string | RawQueryFragment, |
| 1645 | params?: any[], |
| 1646 | ): this { |
| 1647 | return this.where(cond as any, params, '$and'); |
| 1648 | } |
| 1649 | |
| 1650 | /** |
| 1651 | * Adds an OR WHERE clause to the query using an object condition. |
no test coverage detected