UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

16 lines (14 loc) 439 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Not = void 0; const FindOperator_1 = require("../FindOperator"); /** * Find Options Operator. * Used to negate expression. * Example: { title: not("hello") } will return entities where title not equal to "hello". */ function Not(value) { return new FindOperator_1.FindOperator("not", value); } exports.Not = Not; //# sourceMappingURL=Not.js.map