UNPKG

steplix-query-filters

Version:

Steplix Query Filter is a module for parsing filters in string to object.

20 lines (18 loc) 287 B
'use strict'; module.exports = { eq: '=', ee: '=', // exact equal ne: '!=', gt: '>', ge: '>=', lt: '<', le: '<=', li: 'LIKE', nl: 'NOT LIKE', in: 'IN', ni: 'NOT IN', be: 'BETWEEN', nb: 'NOT BETWEEN', is: 'IS', ns: 'NOT IS' };