Files
payload/src/mongoose/operatorMap.ts
2021-10-27 00:49:27 -04:00

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',
};