Here is the simple rsql-query builder utility. It's as minimal as possible but quite powerful at the same time.
import { and, cmp, eq, ge, inList, or } from 'rsql-builder'; // or const { and, cmp, eq, ge, inList, or } = require('rsql-builder')
const query = and(
cmp('genres', inList('sci-fi', 'action', 'non fiction')),
or(cmp('director', eq('Christopher Nolan')), cmp('actor', eq('*Bale'))),
cmp('year', ge(2000))
); // 'genres=in=(sci-fi,action,"non fiction");(director=="Christopher Nolan",actor==*Bale);year>=2000'
npm install --save rsql-builder
and(...comparisons): string
Create "and"-group of comparison.
Arguments
comparisons
– list of comparisons, instances of Comparison-class or strings (for other comparison groups)Example
import { and, cmp, eq, ge } from 'rsql-builder';
const op = and(cmp('year', ge(1980)), cmp('director', eq('Quentin Tarantino'))); // 'year>=1980;director=="Quentin Tarantino"
or(...comparisons): string
Create "or"-group of comparison.
Arguments
comparisons
– list of comparisons, instances of Comparison-class or strings (for other comparison groups)Example
import { cmp, eq, ge, or } from 'rsql-builder';
const op = or(cmp('year', ge(1980)), cmp('director', eq('Quentin Tarantino'))); // 'year>=1980,director=="Quentin Tarantino"
cmp(field, operation): Comparison
or comparison(field, operation): Comparison
Create a new comparison for the field.
Arguments
field {string}
– field nameoperation {Operation}
- operationExample
import { cmp, eq } from 'rsql-builder';
const comp = cmp('field1', eq(200)); // 'field1==200'
eq(argument): Operation
Create "equal"-operation.
Arguments
argument
– Any kind of valueExample
import { eq } from 'rsql-builder';
const op1 = eq(300); // '==300'
const op2 = eq('Taran*'); // '==Tarant*'
const op3 = eq('John Travolta'); // '=="John Travolta"'
ge(argument): Operation
Create greater-or-equal operation
Arguments
argument
– Any kind of valueExample
import { ge } from 'rsql-builder';
const op1 = ge(300); // '>=300'
const op2 = ge('Taran*'); // '>=Tarant*'
const op3 = ge('John Travolta'); // '>="John Travolta"'
gt(argument): Operation
Create greater-than operation
Arguments
argument
– Any kind of valueExample
import { gt } from 'rsql-builder';
const op1 = gt(300); // '>=300'
const op2 = gt('Taran*'); // '>=Tarant*'
const op3 = gt('John Travolta'); // '>="John Travolta"'
inList(...args): Operation
Create in-list operation
Arguments
args
– List of any valuesExample
import { inList } from 'rsql-builder';
const op = inList(300, 'Taran*', 'John Travolta'); // '=in=(300,Taran*,"John Travolta")'
le(argument): Operation
Create less-or-equal operation
Arguments
argument
– Any kind of valueExample
import { le } from 'rsql-builder';
const op1 = le(300); // '<=300'
const op2 = le('Taran*'); // '<=Tarant*'
const op3 = le('John Travolta'); // '<="John Travolta"'
lt(argument): Operation
Create less-than operation
Arguments
argument
– Any kind of valueExample
import { lt } from 'rsql-builder';
const op1 = lt(300); // '<300'
const op2 = lt('Taran*'); // '<Tarant*'
const op3 = lt('John Travolta'); // '<"John Travolta"'
ne(argument): Operation
Create not-equal operation
Arguments
argument
– Any kind of valueExample
import { ne } from 'rsql-builder';
const op1 = ne(300); // '!=300'
const op2 = ne('Taran*'); // '!=Tarant*'
const op3 = ne('John Travolta'); // '!="John Travolta"'
outList(...args): Operation
Create out-list operation
Arguments
args
– List of any valuesExample
import { outList } from 'rsql-builder';
const op = outList(300, 'Taran*', 'John Travolta'); // '=out=(300,Taran*,"John Travolta")'
New operators can be easily created as follows:
import { Operation } from 'rsql-builder';
export function like(value) {
return new Operation(escapeValue(value), '=like=');
}
import { like } from '../my-rsql-operators/like';
const op = like('John Travolta'); // '=like="John Travolta"'
It is recommended to use escapeValue
function that handles special characters, however, you can omit it if you don't need it.
new Operation(escapeValue(value), '=like=');
A custom list operator could look like this:
function customListOperator(value: Argument[]): Operation {
return new Operation(`(${escapeValue(value)})`, '=customListOperator=');
}