UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

18 lines (17 loc) 494 B
export interface QueryBuilderCteOptions { /** * Supported only by Postgres currently * Oracle users should use query with undocumented materialize hint */ materialized?: boolean; /** * Supported by Postgres, SQLite, MySQL and MariaDB * SQL Server automatically detects recursive queries */ recursive?: boolean; /** * Overwrite column names * If number of columns returned doesn't work, it throws */ columnNames?: string[]; }