UNPKG

@blogcode/nest-typeorm-pagination

Version:
29 lines (28 loc) 516 B
"use strict"; 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: "@@", };