Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.AliasedJSONPathBuilder

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
class kysely.AliasedJSONPathBuilder
implements AliasedExpression<O, A>
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { AliasedJSONPathBuilder } = kysely;

Constructors

new
AliasedJSONPathBuilder(jsonPath: TraversedJSONPathBuilder<any, O>, alias: A | Expression<unknown>)

Type Parameters

O
A extends string

Properties

readonly
alias: A | Expression<unknown>

Returns the alias.

readonly
expression: Expression<O>

Returns the aliased expression.

Methods

Creates the OperationNode that describes how to compile this expression into SQL.