Module

x/kysely_postgrs_js_dialect/mod.ts>kysely.InsertQueryNode

Kysely dialect for PostgreSQL using the Postgres.js client.
interface kysely.InsertQueryNode
implements OperationNode
import { type kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { InsertQueryNode } = kysely;

Properties

readonly
kind: "InsertQueryNode"
readonly
optional
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
readonly
optional
defaultValues: boolean
readonly
optional
top: TopNode
variable kysely.InsertQueryNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { InsertQueryNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is InsertQueryNode; create(
into: TableNode,
withNode?: WithNode,
replace?: boolean,
): InsertQueryNode; createWithoutInto(): InsertQueryNode; cloneWith(insertQuery: InsertQueryNode, props: InsertQueryNodeProps): InsertQueryNode; }>
import kysely.InsertQueryNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { InsertQueryNode } = kysely;