14 lines
254 B
TypeScript
14 lines
254 B
TypeScript
export const operatorMap = {
|
|
greater_than_equal: '$gte',
|
|
less_than_equal: '$lte',
|
|
less_than: '$lt',
|
|
greater_than: '$gt',
|
|
in: '$in',
|
|
all: '$all',
|
|
not_in: '$nin',
|
|
not_equals: '$ne',
|
|
exists: '$exists',
|
|
equals: '$eq',
|
|
near: '$near',
|
|
};
|