(
cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string,
params?: any[],
)
| 1900 | } |
| 1901 | |
| 1902 | andHaving( |
| 1903 | cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string, |
| 1904 | params?: any[], |
| 1905 | ): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields, CTEs> { |
| 1906 | return this.having(cond, params, '$and'); |
| 1907 | } |
| 1908 | |
| 1909 | orHaving( |
| 1910 | cond?: QBFilterQuery<Entity, RootAlias, Context, RawAliases> | string, |
no test coverage detected