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

x/kysely_postgrs_js_dialect/deps.ts>kysely.OperandExpression

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

Like Expression<V> but also accepts a select query with an output type extending Record<string, V>. This type is useful because SQL treats records with a single column as single values.

definition: Expression<V> | SelectQueryBuilderExpression<Record<string, V>>