* Check if operator is a comparison operator
(name: string)
| 344 | * Check if operator is a comparison operator |
| 345 | */ |
| 346 | function isComparisonOp(name: string): boolean { |
| 347 | return [`eq`, `gt`, `gte`, `lt`, `lte`, `like`, `ilike`].includes(name) |
| 348 | } |
| 349 | |
| 350 | /** |
| 351 | * Get the SQL symbol for a comparison operator |