Skip to main content

SQLInverse

Defined in: expr/src/functions/sql.ts:39

Inverse of defaultSQLSerializers: maps SQL surface syntax back to fn keys for the import direction (parsing). operators is keyed by arithmetic BitExpression operator token; functions is keyed by upper-cased FunctionCall name. Ambiguous inverses accept all known spellings (%/MODmod, LEAST/MINmin, GREATEST/MAXmax).

Properties

functions

functions: Record<string, string>

Defined in: expr/src/functions/sql.ts:43

FunctionCall names (upper-cased), each mapping to an fn key.


operators

operators: Record<string, string>

Defined in: expr/src/functions/sql.ts:41

Infix BitExpression operators, keyed by SQL operator token.


caution

API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.