(where: Where)
| 262 | * Extract the expression from a Where clause |
| 263 | */ |
| 264 | export function getWhereExpression(where: Where): BasicExpression<boolean> { |
| 265 | return typeof where === `object` && `expression` in where |
| 266 | ? where.expression |
| 267 | : where |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * Extract the expression from a HAVING clause |
no outgoing calls
no test coverage detected