@goatlab/fluent
Version:
Readable query Interface & API generator for TS and Node
23 lines (22 loc) • 947 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogicOperator = void 0;
var LogicOperator;
(function (LogicOperator) {
LogicOperator["equals"] = "equals";
LogicOperator["lessThan"] = "lessThan";
LogicOperator["greaterThan"] = "greaterThan";
LogicOperator["lessOrEqualThan"] = "lessOrEqualThan";
LogicOperator["greaterOrEqualThan"] = "greaterOrEqualThan";
LogicOperator["isNot"] = "isNot";
LogicOperator["in"] = "in";
LogicOperator["notIn"] = "notIn";
LogicOperator["like"] = "like";
LogicOperator["regexp"] = "regexp";
LogicOperator["startsWith"] = "startsWith";
LogicOperator["endsWith"] = "endsWith";
LogicOperator["contains"] = "contains";
LogicOperator["arrayContains"] = "arrayContains";
LogicOperator["exists"] = "exists";
LogicOperator["notExists"] = "notExists";
})(LogicOperator = exports.LogicOperator || (exports.LogicOperator = {}));