Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.JSONPathNode

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
interface kysely.JSONPathNode
implements OperationNode
Re-export
import { type kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/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_deno_postgres_dialect@v0.27.1/mod.ts";
const { JSONPathNode } = kysely;

type

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