@blogcode/nest-typeorm-pagination
Version:
Pagination offset-based and cursor-based for NestJS
29 lines (28 loc) • 516 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.operators = void 0;
exports.operators = {
"=": "=",
eq: "=",
'!=': "!=",
neq: "!=",
'>': ">",
gt: ">",
'<': "<",
lt: "<",
'>=': ">=",
gte: ">=",
'<=': "<=",
lte: "<=",
like: "LIKE",
ilike: "ILIKE",
nlike: "NOT LIKE",
nilike: "NOT ILIKE",
is: "IS",
isnot: "IS NOT",
in: "IN",
nin: "NOT IN",
bw: "BETWEEN",
nbw: "NOT BETWEEN",
fts: "@@",
};
;