leafjs/orient

View on GitHub
src/constants/comparisonoperators.js

Summary

Maintainability
A
0 mins
Test Coverage
export default {
    '$in':  'IN',
    'in': 'IN',
    '$nin': 'NOT IN', 
    '$lt': '<',
    '$lte': '<=',
    '$gt': '>',
    '$gte': '>=',
    '$ne': '<>',
    '$eq': '=',
    'contains': 'contains',
    'NOT': 'NOT',
    'between': 'between',
    'BETWEEN': 'between'
};