/
opt
/
canhelp
/
node_modules
/
kysely
/
dist
/
cjs
/
query-builder
/
/opt/canhelp/node_modules/kysely/dist/cjs/query-builder
mkdir
upload
Name
Size
Mode
Actions
aggregate-function-builder.d.ts
13602
0644
edit
dl
rm
aggregate-function-builder.js
8276
0644
edit
dl
rm
case-builder.d.ts
6689
0644
edit
dl
rm
case-builder.js
3353
0644
edit
dl
rm
cte-builder.d.ts
802
0644
edit
dl
rm
cte-builder.js
1160
0644
edit
dl
rm
delete-query-builder.d.ts
47443
0644
edit
dl
rm
delete-query-builder.js
16599
0644
edit
dl
rm
delete-result.d.ts
116
0644
edit
dl
rm
delete-result.js
274
0644
edit
dl
rm
function-module.d.ts
23521
0644
edit
dl
rm
function-module.js
2856
0644
edit
dl
rm
having-interface.d.ts
953
0644
edit
dl
rm
having-interface.js
77
0644
edit
dl
rm
insert-query-builder.d.ts
40215
0644
edit
dl
rm
insert-query-builder.js
36813
0644
edit
dl
rm
insert-result.d.ts
1735
0644
edit
dl
rm
insert-result.js
1874
0644
edit
dl
rm
join-builder.d.ts
1773
0644
edit
dl
rm
join-builder.js
1806
0644
edit
dl
rm
json-path-builder.d.ts
9545
0644
edit
dl
rm
json-path-builder.js
6418
0644
edit
dl
rm
merge-query-builder.d.ts
37025
0644
edit
dl
rm
merge-query-builder.js
21626
0644
edit
dl
rm
merge-result.d.ts
139
0644
edit
dl
rm
merge-result.js
270
0644
edit
dl
rm
no-result-error.d.ts
478
0644
edit
dl
rm
no-result-error.js
534
0644
edit
dl
rm
on-conflict-builder.d.ts
25573
0644
edit
dl
rm
on-conflict-builder.js
9028
0644
edit
dl
rm
order-by-interface.d.ts
4883
0644
edit
dl
rm
order-by-interface.js
77
0644
edit
dl
rm
order-by-item-builder.d.ts
1372
0644
edit
dl
rm
order-by-item-builder.js
2457
0644
edit
dl
rm
output-interface.d.ts
5477
0644
edit
dl
rm
output-interface.js
77
0644
edit
dl
rm
over-builder.d.ts
3755
0644
edit
dl
rm
over-builder.js
1495
0644
edit
dl
rm
returning-interface.d.ts
3496
0644
edit
dl
rm
returning-interface.js
77
0644
edit
dl
rm
select-query-builder-expression.d.ts
962
0644
edit
dl
rm
select-query-builder-expression.js
77
0644
edit
dl
rm
select-query-builder.d.ts
78467
0644
edit
dl
rm
select-query-builder.js
15038
0644
edit
dl
rm
update-query-builder.d.ts
50254
0644
edit
dl
rm
update-query-builder.js
17236
0644
edit
dl
rm
update-result.d.ts
497
0644
edit
dl
rm
update-result.js
663
0644
edit
dl
rm
where-interface.d.ts
10814
0644
edit
dl
rm
where-interface.js
77
0644
edit
dl
rm
Edit:
/opt/canhelp/node_modules/kysely/dist/cjs/query-builder/on-conflict-builder.js
(9028B)
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OnConflictUpdateBuilder = exports.OnConflictDoNothingBuilder = exports.OnConflictBuilder = void 0; const column_node_js_1 = require("../operation-node/column-node.js"); const identifier_node_js_1 = require("../operation-node/identifier-node.js"); const on_conflict_node_js_1 = require("../operation-node/on-conflict-node.js"); const binary_operation_parser_js_1 = require("../parser/binary-operation-parser.js"); const update_set_parser_js_1 = require("../parser/update-set-parser.js"); const object_utils_js_1 = require("../util/object-utils.js"); class OnConflictBuilder { #props; constructor(props) { this.#props = (0, object_utils_js_1.freeze)(props); } /** * Specify a single column as the conflict target. * * Also see the {@link columns}, {@link constraint} and {@link expression} * methods for alternative ways to specify the conflict target. */ column(column) { const columnNode = column_node_js_1.ColumnNode.create(column); return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWith(this.#props.onConflictNode, { columns: this.#props.onConflictNode.columns ? (0, object_utils_js_1.freeze)([...this.#props.onConflictNode.columns, columnNode]) : (0, object_utils_js_1.freeze)([columnNode]), }), }); } /** * Specify a list of columns as the conflict target. * * Also see the {@link column}, {@link constraint} and {@link expression} * methods for alternative ways to specify the conflict target. */ columns(columns) { const columnNodes = columns.map(column_node_js_1.ColumnNode.create); return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWith(this.#props.onConflictNode, { columns: this.#props.onConflictNode.columns ? (0, object_utils_js_1.freeze)([...this.#props.onConflictNode.columns, ...columnNodes]) : (0, object_utils_js_1.freeze)(columnNodes), }), }); } /** * Specify a specific constraint by name as the conflict target. * * Also see the {@link column}, {@link columns} and {@link expression} * methods for alternative ways to specify the conflict target. */ constraint(constraintName) { return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWith(this.#props.onConflictNode, { constraint: identifier_node_js_1.IdentifierNode.create(constraintName), }), }); } /** * Specify an expression as the conflict target. * * This can be used if the unique index is an expression index. * * Also see the {@link column}, {@link columns} and {@link constraint} * methods for alternative ways to specify the conflict target. */ expression(expression) { return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWith(this.#props.onConflictNode, { indexExpression: expression.toOperationNode(), }), }); } where(...args) { return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWithIndexWhere(this.#props.onConflictNode, (0, binary_operation_parser_js_1.parseValueBinaryOperationOrExpression)(args)), }); } whereRef(lhs, op, rhs) { return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWithIndexWhere(this.#props.onConflictNode, (0, binary_operation_parser_js_1.parseReferentialBinaryOperation)(lhs, op, rhs)), }); } clearWhere() { return new OnConflictBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWithoutIndexWhere(this.#props.onConflictNode), }); } /** * Adds the "do nothing" conflict action. * * ### Examples * * ```ts * const id = 1 * const first_name = 'John' * * await db * .insertInto('person') * .values({ first_name, id }) * .onConflict((oc) => oc * .column('id') * .doNothing() * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name", "id") * values ($1, $2) * on conflict ("id") do nothing * ``` */ doNothing() { return new OnConflictDoNothingBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWith(this.#props.onConflictNode, { doNothing: true, }), }); } /** * Adds the "do update set" conflict action. * * ### Examples * * ```ts * const id = 1 * const first_name = 'John' * * await db * .insertInto('person') * .values({ first_name, id }) * .onConflict((oc) => oc * .column('id') * .doUpdateSet({ first_name }) * ) * .execute() * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name", "id") * values ($1, $2) * on conflict ("id") * do update set "first_name" = $3 * ``` * * In the next example we use the `ref` method to reference * columns of the virtual table `excluded` in a type-safe way * to create an upsert operation: * * ```ts * import type { NewPerson } from 'type-editor' // imaginary module * * async function upsertPerson(person: NewPerson): Promise<void> { * await db.insertInto('person') * .values(person) * .onConflict((oc) => oc * .column('id') * .doUpdateSet((eb) => ({ * first_name: eb.ref('excluded.first_name'), * last_name: eb.ref('excluded.last_name') * }) * ) * ) * .execute() * } * ``` * * The generated SQL (PostgreSQL): * * ```sql * insert into "person" ("first_name", "last_name") * values ($1, $2) * on conflict ("id") * do update set * "first_name" = excluded."first_name", * "last_name" = excluded."last_name" * ``` */ doUpdateSet(update) { return new OnConflictUpdateBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWith(this.#props.onConflictNode, { updates: (0, update_set_parser_js_1.parseUpdateObjectExpression)(update), }), }); } /** * Simply calls the provided function passing `this` as the only argument. `$call` returns * what the provided function returns. */ $call(func) { return func(this); } } exports.OnConflictBuilder = OnConflictBuilder; class OnConflictDoNothingBuilder { #props; constructor(props) { this.#props = (0, object_utils_js_1.freeze)(props); } toOperationNode() { return this.#props.onConflictNode; } } exports.OnConflictDoNothingBuilder = OnConflictDoNothingBuilder; class OnConflictUpdateBuilder { #props; constructor(props) { this.#props = (0, object_utils_js_1.freeze)(props); } where(...args) { return new OnConflictUpdateBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWithUpdateWhere(this.#props.onConflictNode, (0, binary_operation_parser_js_1.parseValueBinaryOperationOrExpression)(args)), }); } /** * Specify a where condition for the update operation. * * See {@link WhereInterface.whereRef} for more info. */ whereRef(lhs, op, rhs) { return new OnConflictUpdateBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWithUpdateWhere(this.#props.onConflictNode, (0, binary_operation_parser_js_1.parseReferentialBinaryOperation)(lhs, op, rhs)), }); } clearWhere() { return new OnConflictUpdateBuilder({ ...this.#props, onConflictNode: on_conflict_node_js_1.OnConflictNode.cloneWithoutUpdateWhere(this.#props.onConflictNode), }); } /** * Simply calls the provided function passing `this` as the only argument. `$call` returns * what the provided function returns. */ $call(func) { return func(this); } toOperationNode() { return this.#props.onConflictNode; } } exports.OnConflictUpdateBuilder = OnConflictUpdateBuilder;
Save
cmd:
run