UNPKG

drizzle-orm

Version:

Drizzle ORM package for SQL databases

103 lines 2.76 kB
import { entityKind } from "../../entity.js"; import { QueryPromise } from "../../query-promise.js"; import { mapRelationalRow } from "../../relations.js"; class RelationalQueryBuilder { constructor(fullSchema, schema, tableNamesMap, table, tableConfig, dialect, session) { this.fullSchema = fullSchema; this.schema = schema; this.tableNamesMap = tableNamesMap; this.table = table; this.tableConfig = tableConfig; this.dialect = dialect; this.session = session; } static [entityKind] = "SingleStoreRelationalQueryBuilder"; findMany(config) { return new SingleStoreRelationalQuery( this.fullSchema, this.schema, this.tableNamesMap, this.table, this.tableConfig, this.dialect, this.session, config ? config : {}, "many" ); } findFirst(config) { return new SingleStoreRelationalQuery( this.fullSchema, this.schema, this.tableNamesMap, this.table, this.tableConfig, this.dialect, this.session, config ? { ...config, limit: 1 } : { limit: 1 }, "first" ); } } class SingleStoreRelationalQuery extends QueryPromise { constructor(fullSchema, schema, tableNamesMap, table, tableConfig, dialect, session, config, queryMode) { super(); this.fullSchema = fullSchema; this.schema = schema; this.tableNamesMap = tableNamesMap; this.table = table; this.tableConfig = tableConfig; this.dialect = dialect; this.session = session; this.config = config; this.queryMode = queryMode; } static [entityKind] = "SingleStoreRelationalQuery"; prepare() { const { query, builtQuery } = this._toSQL(); return this.session.prepareQuery( builtQuery, void 0, (rawRows) => { const rows = rawRows.map((row) => mapRelationalRow(this.schema, this.tableConfig, row, query.selection)); if (this.queryMode === "first") { return rows[0]; } return rows; } ); } _getQuery() { return this.dialect.buildRelationalQuery({ fullSchema: this.fullSchema, schema: this.schema, tableNamesMap: this.tableNamesMap, table: this.table, tableConfig: this.tableConfig, queryConfig: this.config, tableAlias: this.tableConfig.tsName }); } _toSQL() { const query = this._getQuery(); const builtQuery = this.dialect.sqlToQuery(query.sql); return { builtQuery, query }; } /** @internal */ getSQL() { return this._getQuery().sql; } toSQL() { return this._toSQL().builtQuery; } execute() { return this.prepare().execute(); } } export { RelationalQueryBuilder, SingleStoreRelationalQuery }; //# sourceMappingURL=query.js.map