( predicates: Array<BasicExpression<boolean>>, )
| 295 | * @returns Combined predicate representing the union |
| 296 | */ |
| 297 | export function unionWherePredicates( |
| 298 | predicates: Array<BasicExpression<boolean>>, |
| 299 | ): BasicExpression<boolean> { |
| 300 | return combineWherePredicates(predicates, `or`, unionSameFieldPredicates) |
| 301 | } |
| 302 | |
| 303 | /** |
| 304 | * Compute the difference between two where predicates: `fromPredicate AND NOT(subtractPredicate)`. |
no test coverage detected