typeorm
Version:
Data-Mapper ORM for TypeScript and ES2023+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
16 lines (15 loc) • 568 B
TypeScript
export type InvalidFindOptionsWhereBehavior = {
/**
* How to handle null values in where conditions.
* - 'ignore': Skip null properties
* - 'sql-null': Transform null to SQL NULL
* - 'throw': Throw an error when null is encountered (default)
*/
readonly null?: "ignore" | "sql-null" | "throw";
/**
* How to handle undefined values in where conditions.
* - 'ignore': Skip undefined properties
* - 'throw': Throw an error when undefined is encountered (default)
*/
readonly undefined?: "ignore" | "throw";
};