Module

x/kysely_postgrs_js_dialect/mod.ts>kysely.BinaryOperationNode

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

Properties

readonly
kind: "BinaryOperationNode"
readonly
leftOperand: OperationNode
readonly
operator: OperationNode
readonly
rightOperand: OperationNode
variable kysely.BinaryOperationNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { BinaryOperationNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is BinaryOperationNode; create(
leftOperand: OperationNode,
operator: OperationNode,
rightOperand: OperationNode,
): BinaryOperationNode; }>
import kysely.BinaryOperationNode
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { BinaryOperationNode } = kysely;