Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.InsertQueryNode

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

Properties

readonly
kind: "InsertQueryNode"
readonly
into: TableNode
readonly
optional
columns: ReadonlyArray<ColumnNode>
readonly
optional
values: OperationNode
readonly
optional
returning: ReturningNode
readonly
optional
onConflict: OnConflictNode
readonly
optional
onDuplicateKey: OnDuplicateKeyNode
readonly
optional
with: WithNode
readonly
optional
ignore: boolean
readonly
optional
replace: boolean
readonly
optional
explain: ExplainNode
variable kysely.InsertQueryNode
Re-export
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { InsertQueryNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is InsertQueryNode; create(
into: TableNode,
withNode?: WithNode,
replace?: boolean,
): InsertQueryNode; cloneWith(insertQuery: InsertQueryNode, props: InsertQueryNodeProps): InsertQueryNode; }>