Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.UpdateQueryNode

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

Properties

readonly
kind: "UpdateQueryNode"
readonly
optional
table: OperationNode
readonly
optional
from: FromNode
readonly
optional
joins: ReadonlyArray<JoinNode>
readonly
optional
where: WhereNode
readonly
optional
updates: ReadonlyArray<ColumnUpdateNode>
readonly
optional
returning: ReturningNode
readonly
optional
with: WithNode
readonly
optional
explain: ExplainNode
readonly
optional
limit: LimitNode
readonly
optional
top: TopNode
variable kysely.UpdateQueryNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/deps.ts";
const { UpdateQueryNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is UpdateQueryNode; create(table: OperationNode, withNode?: WithNode): UpdateQueryNode; createWithoutTable(): UpdateQueryNode; cloneWithFromItems(updateQuery: UpdateQueryNode, fromItems: ReadonlyArray<OperationNode>): UpdateQueryNode; cloneWithUpdates(updateQuery: UpdateQueryNode, updates: ReadonlyArray<ColumnUpdateNode>): UpdateQueryNode; cloneWithLimit(updateQuery: UpdateQueryNode, limit: LimitNode): UpdateQueryNode; }>
import kysely.UpdateQueryNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/deps.ts";
const { UpdateQueryNode } = kysely;