Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kysely_postgrs_js_dialect/mod.ts>kysely.JSONPathNode

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

Properties

readonly
kind: "JSONPathNode"
readonly
optional
inOperator: OperatorNode
readonly
pathLegs: ReadonlyArray<JSONPathLegNode>
variable kysely.JSONPathNode
Re-export
import { kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.4/mod.ts";
const { JSONPathNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is JSONPathNode; create(inOperator?: OperatorNode): JSONPathNode; cloneWithLeg(jsonPathNode: JSONPathNode, pathLeg: JSONPathLegNode): JSONPathNode; }>