UNPKG

@mikro-orm/knex

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

19 lines (18 loc) 488 B
export declare enum QueryType { TRUNCATE = "TRUNCATE", SELECT = "SELECT", COUNT = "COUNT", INSERT = "INSERT", UPDATE = "UPDATE", DELETE = "DELETE", UPSERT = "UPSERT" } export declare enum JoinType { leftJoin = "left join", innerJoin = "inner join", nestedLeftJoin = "nested left join", nestedInnerJoin = "nested inner join", pivotJoin = "pivot join", innerJoinLateral = "inner join lateral", leftJoinLateral = "left join lateral" }