Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/kysely_postgrs_js_dialect/mod.ts>kysely.FetchNode

Kysely dialect for PostgreSQL using the Postgres.js client.
Go to Latest
interface kysely.FetchNode
implements OperationNode
Re-export
import { type kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.4/mod.ts";
const { FetchNode } = kysely;

Properties

readonly
kind: "FetchNode"
readonly
rowCount: ValueNode
readonly
modifier: FetchModifier
variable kysely.FetchNode
Re-export
import { kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.4/mod.ts";
const { FetchNode } = kysely;

type

{ is(node: OperationNode): node is FetchNode; create(rowCount: number | bigint, modifier: FetchModifier): FetchNode; }