Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.AliasedExpressionWrapper

Kysely dialect for PostgreSQL using the Postgres.js client.
class kysely.AliasedExpressionWrapper
implements AliasedExpression<T, A>
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/deps.ts";
const { AliasedExpressionWrapper } = kysely;

Constructors

new
AliasedExpressionWrapper(expr: Expression<T>, alias: A | Expression<unknown>)

Type Parameters

T
A extends string

Properties

readonly
alias: A | Expression<unknown>

Returns the alias.

readonly
expression: Expression<T>

Returns the aliased expression.

Methods

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