UNPKG

kysely

Version:
823 lines (822 loc) 27 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InsertQueryBuilder = void 0; const select_parser_js_1 = require("../parser/select-parser.js"); const insert_values_parser_js_1 = require("../parser/insert-values-parser.js"); const insert_query_node_js_1 = require("../operation-node/insert-query-node.js"); const query_node_js_1 = require("../operation-node/query-node.js"); const update_set_parser_js_1 = require("../parser/update-set-parser.js"); const prevent_await_js_1 = require("../util/prevent-await.js"); const object_utils_js_1 = require("../util/object-utils.js"); const on_duplicate_key_node_js_1 = require("../operation-node/on-duplicate-key-node.js"); const insert_result_js_1 = require("./insert-result.js"); const no_result_error_js_1 = require("./no-result-error.js"); const expression_parser_js_1 = require("../parser/expression-parser.js"); const column_node_js_1 = require("../operation-node/column-node.js"); const on_conflict_builder_js_1 = require("./on-conflict-builder.js"); const on_conflict_node_js_1 = require("../operation-node/on-conflict-node.js"); const top_parser_js_1 = require("../parser/top-parser.js"); class InsertQueryBuilder { #props; constructor(props) { this.#props = (0, object_utils_js_1.freeze)(props); } /** * Sets the values to insert for an {@link Kysely.insertInto | insert} query. * * This method takes an object whose keys are column names and values are * values to insert. In addition to the column's type, the values can be * raw {@link sql} snippets or select queries. * * You must provide all fields you haven't explicitly marked as nullable * or optional using {@link Generated} or {@link ColumnType}. * * The return value of an `insert` query is an instance of {@link InsertResult}. The * {@link InsertResult.insertId | insertId} field holds the auto incremented primary * key if the database returned one. * * On PostgreSQL and some other dialects, you need to call `returning` to get * something out of the query. * * Also see the {@link expression} method for inserting the result of a select * query or any other expression. * * ### Examples * * <!-- siteExample("insert", "Single row", 10) --> * * Insert a single row: * * ```ts * const result = await db * .insertInto('person') * .values({ * first_name: 'Jennifer', * last_name: 'Aniston', * age: 40 * }) * .executeTakeFirst() * * // `insertId` is only available on dialects that * // automatically return the id of the inserted row * // such as MySQL and SQLite. On PostgreSQL, for example, * // you need to add a `returning` clause to the query to * // get anything out. See the "returning data" example. * console.log(result.insertId) * ``` * * The generated SQL (MySQL): * * ```sql * insert into `person` (`first_name`, `last_name`, `age`) values (?, ?, ?) * ``` * * <!-- siteExample("insert", "Multiple rows", 20) --> * * On dialects that support it (for example PostgreSQL) you can insert multiple * rows by providing an array. Note that the return value is once again very * dialect-specific. Some databases may only return the id of the *last* inserted * row and some return nothing at all unless you call `returning`. * * ```ts * await db * .insertInto('person') * .values([{ * first_name: 'Jennifer', * last_name: 'Aniston', * age: 40, * }, { * first_name: 'Arnold', * last_name: 'Schwarzenegger', * age: 70, * }]) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name", "last_name", "age") values (($1, $2, $3), ($4, $5, $6)) * ``` * * <!-- siteExample("insert", "Returning data", 30) --> * * On supported dialects like PostgreSQL you need to chain `returning` to the query to get * the inserted row's columns (or any other expression) as the return value. `returning` * works just like `select`. Refer to `select` method's examples and documentation for * more info. * * ```ts * const result = await db * .insertInto('person') * .values({ * first_name: 'Jennifer', * last_name: 'Aniston', * age: 40, * }) * .returning(['id', 'first_name as name']) * .executeTakeFirstOrThrow() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name", "last_name", "age") values ($1, $2, $3) returning "id", "first_name" as "name" * ``` * * <!-- siteExample("insert", "Complex values", 40) --> * * In addition to primitives, the values can also be arbitrary expressions. * You can build the expressions by using a callback and calling the methods * on the expression builder passed to it: * * ```ts * import { sql } from 'kysely' * * const ani = "Ani" * const ston = "ston" * * const result = await db * .insertInto('person') * .values(({ ref, selectFrom, fn }) => ({ * first_name: 'Jennifer', * last_name: sql`concat(${ani}, ${ston})`, * middle_name: ref('first_name'), * age: selectFrom('person') * .select(fn.avg<number>('age') * .as('avg_age')), * })) * .executeTakeFirst() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ( * "first_name", * "last_name", * "middle_name", * "age" * ) * values ( * $1, * concat($2, $3), * "first_name", * (select avg("age") as "avg_age" from "person") * ) * ``` * * You can also use the callback version of subqueries or raw expressions: * * ```ts * db.with('jennifer', (db) => db * .selectFrom('person') * .where('first_name', '=', 'Jennifer') * .select(['id', 'first_name', 'gender']) * .limit(1) * ).insertInto('pet').values((eb) => ({ * owner_id: eb.selectFrom('jennifer').select('id'), * name: eb.selectFrom('jennifer').select('first_name'), * species: 'cat', * })) * ``` */ values(insert) { const [columns, values] = (0, insert_values_parser_js_1.parseInsertExpression)(insert); return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { columns, values, }), }); } /** * Sets the columns to insert. * * The {@link values} method sets both the columns and the values and this method * is not needed. But if you are using the {@link expression} method, you can use * this method to set the columns to insert. * * ### Examples * * ```ts * db.insertInto('person') * .columns(['first_name']) * .expression((eb) => eb.selectFrom('pet').select('pet.name')) * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name") * select "pet"."name" from "pet" * ``` */ columns(columns) { return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { columns: (0, object_utils_js_1.freeze)(columns.map(column_node_js_1.ColumnNode.create)), }), }); } /** * Insert an arbitrary expression. For example the result of a select query. * * ### Examples * * <!-- siteExample("insert", "Insert subquery", 50) --> * * You can create an `INSERT INTO SELECT FROM` query using the `expression` method: * * ```ts * const result = await db.insertInto('person') * .columns(['first_name', 'last_name', 'age']) * .expression((eb) => eb * .selectFrom('pet') * .select((eb) => [ * 'pet.name', * eb.val('Petson').as('last_name'), * eb.lit(7).as('age'), * ]) * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name", "last_name", "age") * select "pet"."name", $1 as "last_name", 7 as "age from "pet" * ``` */ expression(expression) { return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { values: (0, expression_parser_js_1.parseExpression)(expression), }), }); } /** * Creates an `insert into "person" default values` query. * * ### Examples * * ```ts * await db.insertInto('person') * .defaultValues() * .execute() * ``` */ defaultValues() { return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { defaultValues: true, }), }); } /** * Changes an `insert into` query to an `insert ignore into` query. * * If you use the ignore modifier, ignorable errors that occur while executing the * insert statement are ignored. For example, without ignore, a row that duplicates * an existing unique index or primary key value in the table causes a duplicate-key * error and the statement is aborted. With ignore, the row is discarded and no error * occurs. * * This is only supported on some dialects like MySQL. On most dialects you should * use the {@link onConflict} method. * * ### Examples * * ```ts * await db.insertInto('person') * .ignore() * .values(values) * .execute() * ``` */ ignore() { return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { ignore: true, }), }); } /** * Changes an `insert into` query to an `insert top into` query. * * `top` clause is only supported by some dialects like MS SQL Server. * * ### Examples * * Insert the first 5 rows: * * ```ts * await db.insertInto('person') * .top(5) * .columns(['first_name', 'gender']) * .expression( * (eb) => eb.selectFrom('pet').select(['name', sql.lit('other').as('gender')]) * ) * .execute() * ``` * * The generated SQL (MS SQL Server): * * ```sql * insert top(5) into "person" ("first_name", "gender") select "name", 'other' as "gender" from "pet" * ``` * * Insert the first 50 percent of rows: * * ```ts * await db.insertInto('person') * .top(50, 'percent') * .columns(['first_name', 'gender']) * .expression( * (eb) => eb.selectFrom('pet').select(['name', sql.lit('other').as('gender')]) * ) * .execute() * ``` * * The generated SQL (MS SQL Server): * * ```sql * insert top(50) percent into "person" ("first_name", "gender") select "name", 'other' as "gender" from "pet" * ``` */ top(expression, modifiers) { return new InsertQueryBuilder({ ...this.#props, queryNode: query_node_js_1.QueryNode.cloneWithTop(this.#props.queryNode, (0, top_parser_js_1.parseTop)(expression, modifiers)), }); } /** * Adds an `on conflict` clause to the query. * * `on conflict` is only supported by some dialects like PostgreSQL and SQLite. On MySQL * you can use {@link ignore} and {@link onDuplicateKeyUpdate} to achieve similar results. * * ### Examples * * ```ts * await db * .insertInto('pet') * .values({ * name: 'Catto', * species: 'cat', * }) * .onConflict((oc) => oc * .column('name') * .doUpdateSet({ species: 'hamster' }) * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "pet" ("name", "species") * values ($1, $2) * on conflict ("name") * do update set "species" = $3 * ``` * * You can provide the name of the constraint instead of a column name: * * ```ts * await db * .insertInto('pet') * .values({ * name: 'Catto', * species: 'cat', * }) * .onConflict((oc) => oc * .constraint('pet_name_key') * .doUpdateSet({ species: 'hamster' }) * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "pet" ("name", "species") * values ($1, $2) * on conflict on constraint "pet_name_key" * do update set "species" = $3 * ``` * * You can also specify an expression as the conflict target in case * the unique index is an expression index: * * ```ts * import { sql } from 'kysely' * * await db * .insertInto('pet') * .values({ * name: 'Catto', * species: 'cat', * }) * .onConflict((oc) => oc * .expression(sql`lower(name)`) * .doUpdateSet({ species: 'hamster' }) * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "pet" ("name", "species") * values ($1, $2) * on conflict (lower(name)) * do update set "species" = $3 * ``` * * You can add a filter for the update statement like this: * * ```ts * await db * .insertInto('pet') * .values({ * name: 'Catto', * species: 'cat', * }) * .onConflict((oc) => oc * .column('name') * .doUpdateSet({ species: 'hamster' }) * .where('excluded.name', '!=', 'Catto'') * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "pet" ("name", "species") * values ($1, $2) * on conflict ("name") * do update set "species" = $3 * where "excluded"."name" != $4 * ``` * * You can create an `on conflict do nothing` clauses like this: * * ```ts * await db * .insertInto('pet') * .values({ * name: 'Catto', * species: 'cat', * }) * .onConflict((oc) => oc * .column('name') * .doNothing() * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "pet" ("name", "species") * values ($1, $2) * on conflict ("name") do nothing * ``` * * You can refer to the columns of the virtual `excluded` table * in a type-safe way using a callback and the `ref` method of * `ExpressionBuilder`: * * ```ts * db.insertInto('person') * .values(person) * .onConflict(oc => oc * .column('id') * .doUpdateSet({ * first_name: (eb) => eb.ref('excluded.first_name'), * last_name: (eb) => eb.ref('excluded.last_name') * }) * ) * ``` */ onConflict(callback) { return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { onConflict: callback(new on_conflict_builder_js_1.OnConflictBuilder({ onConflictNode: on_conflict_node_js_1.OnConflictNode.create(), })).toOperationNode(), }), }); } /** * Adds `on duplicate key update` to the query. * * If you specify `on duplicate key update`, and a row is inserted that would cause * a duplicate value in a unique index or primary key, an update of the old row occurs. * * This is only implemented by some dialects like MySQL. On most dialects you should * use {@link onConflict} instead. * * ### Examples * * ```ts * await db * .insertInto('person') * .values(values) * .onDuplicateKeyUpdate({ species: 'hamster' }) * ``` */ onDuplicateKeyUpdate(update) { return new InsertQueryBuilder({ ...this.#props, queryNode: insert_query_node_js_1.InsertQueryNode.cloneWith(this.#props.queryNode, { onDuplicateKey: on_duplicate_key_node_js_1.OnDuplicateKeyNode.create((0, update_set_parser_js_1.parseUpdateObjectExpression)(update)), }), }); } returning(selection) { return new InsertQueryBuilder({ ...this.#props, queryNode: query_node_js_1.QueryNode.cloneWithReturning(this.#props.queryNode, (0, select_parser_js_1.parseSelectArg)(selection)), }); } returningAll() { return new InsertQueryBuilder({ ...this.#props, queryNode: query_node_js_1.QueryNode.cloneWithReturning(this.#props.queryNode, (0, select_parser_js_1.parseSelectAll)()), }); } /** * Clears all `returning` clauses from the query. * * ### Examples * * ```ts * db.insertInto('person') * .values({ first_name: 'James', last_name: 'Smith', age: 42 }) * .returning(['first_name']) * .clearReturning() * ``` * * The generated SQL(PostgreSQL): * * ```sql * insert into "person" ("James", "Smith", 42) * ``` */ clearReturning() { return new InsertQueryBuilder({ ...this.#props, queryNode: query_node_js_1.QueryNode.cloneWithoutReturning(this.#props.queryNode), }); } /** * Simply calls the provided function passing `this` as the only argument. `$call` returns * what the provided function returns. * * If you want to conditionally call a method on `this`, see * the {@link $if} method. * * ### Examples * * The next example uses a helper function `log` to log a query: * * ```ts * function log<T extends Compilable>(qb: T): T { * console.log(qb.compile()) * return qb * } * * db.updateTable('person') * .set(values) * .$call(log) * .execute() * ``` */ $call(func) { return func(this); } /** * Call `func(this)` if `condition` is true. * * This method is especially handy with optional selects. Any `returning` or `returningAll` * method calls add columns as optional fields to the output type when called inside * the `func` callback. This is because we can't know if those selections were actually * made before running the code. * * You can also call any other methods inside the callback. * * ### Examples * * ```ts * async function insertPerson(values: InsertablePerson, returnLastName: boolean) { * return await db * .insertInto('person') * .values(values) * .returning(['id', 'first_name']) * .$if(returnLastName, (qb) => qb.returning('last_name')) * .executeTakeFirstOrThrow() * } * ``` * * Any selections added inside the `if` callback will be added as optional fields to the * output type since we can't know if the selections were actually made before running * the code. In the example above the return type of the `insertPerson` function is: * * ```ts * { * id: number * first_name: string * last_name?: string * } * ``` */ $if(condition, func) { if (condition) { return func(this); } return new InsertQueryBuilder({ ...this.#props, }); } /** * Change the output type of the query. * * This method call doesn't change the SQL in any way. This methods simply * returns a copy of this `InsertQueryBuilder` with a new output type. */ $castTo() { return new InsertQueryBuilder(this.#props); } /** * Narrows (parts of) the output type of the query. * * Kysely tries to be as type-safe as possible, but in some cases we have to make * compromises for better maintainability and compilation performance. At present, * Kysely doesn't narrow the output type of the query based on {@link values} input * when using {@link returning} or {@link returningAll}. * * This utility method is very useful for these situations, as it removes unncessary * runtime assertion/guard code. Its input type is limited to the output type * of the query, so you can't add a column that doesn't exist, or change a column's * type to something that doesn't exist in its union type. * * ### Examples * * Turn this code: * * ```ts * const person = await db.insertInto('person') * .values({ ...inputPerson, nullable_column: 'hell yeah!' }) * .returningAll() * .executeTakeFirstOrThrow() * * if (nullable_column) { * functionThatExpectsPersonWithNonNullValue(person) * } * ``` * * Into this: * * ```ts * const person = await db.insertInto('person') * .values({ ...inputPerson, nullable_column: 'hell yeah!' }) * .returningAll() * .$narrowType<{ nullable_column: string }>() * .executeTakeFirstOrThrow() * * functionThatExpectsPersonWithNonNullValue(person) * ``` */ $narrowType() { return new InsertQueryBuilder(this.#props); } /** * Asserts that query's output row type equals the given type `T`. * * This method can be used to simplify excessively complex types to make typescript happy * and much faster. * * Kysely uses complex type magic to achieve its type safety. This complexity is sometimes too much * for typescript and you get errors like this: * * ``` * error TS2589: Type instantiation is excessively deep and possibly infinite. * ``` * * In these case you can often use this method to help typescript a little bit. When you use this * method to assert the output type of a query, Kysely can drop the complex output type that * consists of multiple nested helper types and replace it with the simple asserted type. * * Using this method doesn't reduce type safety at all. You have to pass in a type that is * structurally equal to the current type. * * ### Examples * * ```ts * const result = await db * .with('new_person', (qb) => qb * .insertInto('person') * .values(person) * .returning('id') * .$assertType<{ id: string }>() * ) * .with('new_pet', (qb) => qb * .insertInto('pet') * .values((eb) => ({ owner_id: eb.selectFrom('new_person').select('id'), ...pet })) * .returning(['name as pet_name', 'species']) * .$assertType<{ pet_name: string, species: Species }>() * ) * .selectFrom(['new_person', 'new_pet']) * .selectAll() * .executeTakeFirstOrThrow() * ``` */ $assertType() { return new InsertQueryBuilder(this.#props); } /** * Returns a copy of this InsertQueryBuilder instance with the given plugin installed. */ withPlugin(plugin) { return new InsertQueryBuilder({ ...this.#props, executor: this.#props.executor.withPlugin(plugin), }); } toOperationNode() { return this.#props.executor.transformQuery(this.#props.queryNode, this.#props.queryId); } compile() { return this.#props.executor.compileQuery(this.toOperationNode(), this.#props.queryId); } /** * Executes the query and returns an array of rows. * * Also see the {@link executeTakeFirst} and {@link executeTakeFirstOrThrow} methods. */ async execute() { const compiledQuery = this.compile(); const query = compiledQuery.query; const result = await this.#props.executor.executeQuery(compiledQuery, this.#props.queryId); if (this.#props.executor.adapter.supportsReturning && query.returning) { return result.rows; } return [ new insert_result_js_1.InsertResult(result.insertId, // TODO: remove numUpdatedOrDeletedRows. result.numAffectedRows ?? result.numUpdatedOrDeletedRows), ]; } /** * Executes the query and returns the first result or undefined if * the query returned no result. */ async executeTakeFirst() { const [result] = await this.execute(); return result; } /** * Executes the query and returns the first result or throws if * the query returned no result. * * By default an instance of {@link NoResultError} is thrown, but you can * provide a custom error class, or callback as the only argument to throw a different * error. */ async executeTakeFirstOrThrow(errorConstructor = no_result_error_js_1.NoResultError) { const result = await this.executeTakeFirst(); if (result === undefined) { const error = (0, no_result_error_js_1.isNoResultErrorConstructor)(errorConstructor) ? new errorConstructor(this.toOperationNode()) : errorConstructor(this.toOperationNode()); throw error; } return result; } async *stream(chunkSize = 100) { const compiledQuery = this.compile(); const stream = this.#props.executor.stream(compiledQuery, chunkSize, this.#props.queryId); for await (const item of stream) { yield* item.rows; } } async explain(format, options) { const builder = new InsertQueryBuilder({ ...this.#props, queryNode: query_node_js_1.QueryNode.cloneWithExplain(this.#props.queryNode, format, options), }); return await builder.execute(); } } exports.InsertQueryBuilder = InsertQueryBuilder; (0, prevent_await_js_1.preventAwait)(InsertQueryBuilder, "don't await InsertQueryBuilder instances directly. To execute the query you need to call `execute` or `executeTakeFirst`.");