Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.OnConflictNode

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
interface kysely.OnConflictNode
implements OperationNode
Re-export
import { type kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { OnConflictNode } = kysely;

Properties

readonly
kind: "OnConflictNode"
readonly
optional
columns: ReadonlyArray<ColumnNode>
readonly
optional
constraint: IdentifierNode
readonly
optional
indexExpression: OperationNode
readonly
optional
indexWhere: WhereNode
readonly
optional
updates: ReadonlyArray<ColumnUpdateNode>
readonly
optional
updateWhere: WhereNode
readonly
optional
doNothing: boolean
variable kysely.OnConflictNode
Re-export
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { OnConflictNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is OnConflictNode; create(): OnConflictNode; cloneWith(node: OnConflictNode, props: OnConflictNodeProps): OnConflictNode; cloneWithIndexWhere(node: OnConflictNode, operation: OperationNode): OnConflictNode; cloneWithIndexOrWhere(node: OnConflictNode, operation: OperationNode): OnConflictNode; cloneWithUpdateWhere(node: OnConflictNode, operation: OperationNode): OnConflictNode; cloneWithUpdateOrWhere(node: OnConflictNode, operation: OperationNode): OnConflictNode; cloneWithoutIndexWhere(node: OnConflictNode): OnConflictNode; cloneWithoutUpdateWhere(node: OnConflictNode): OnConflictNode; }>