(columns: (string | null | undefined | false)[])
| 202 | |
| 203 | // Group by methods |
| 204 | groupBy(columns: (string | null | undefined | false)[]): this { |
| 205 | this._groupBy = columns.filter((col): col is string => Boolean(col)); |
| 206 | return this; |
| 207 | } |
| 208 | |
| 209 | // Having methods |
| 210 | having(column: string, operator: Operator, value: SqlParam): this { |
no outgoing calls
no test coverage detected