Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.OnNode

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

Properties

readonly
kind: "OnNode"
readonly
on: OperationNode
variable kysely.OnNode
Re-export
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { OnNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is OnNode; create(filter: OperationNode): OnNode; cloneWithOperation(
onNode: OnNode,
operator: "And" | "Or",
operation: OperationNode,
): OnNode; }>