fiql-query-builder
Version:
This module provides the utility to generate valid FIQL query strings by using a JSON objects or the custom classes provided.
16 lines (15 loc) • 383 B
JavaScript
export const keyConstants = {
AND: 'and',
OR: 'or',
GROUP: 'group',
EQUALS: 'equals',
NOT_EQUALS: 'not_equals',
LESS_THAN: 'less_than',
LESS_THAN_OR_EQUAL: 'less_than_or_equal',
GREATER_THAN: 'greater_than',
GREATER_THAN_OR_EQUAL: 'greater_than_or_equal',
IN: 'in',
OUT: 'out',
CUSTOM_OPERATOR: 'custom_operator',
CUSTOM_EXPRESSION: 'custom_expression',
};