Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.AggregateFunctionNode

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
interface kysely.AggregateFunctionNode
implements OperationNode
Re-export
import { type kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { AggregateFunctionNode } = kysely;

Properties

readonly
kind: "AggregateFunctionNode"
readonly
func: string
readonly
aggregated: readonly OperationNode[]
readonly
optional
distinct: boolean
readonly
optional
filter: WhereNode
readonly
optional
over: OverNode
variable kysely.AggregateFunctionNode
Re-export
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { AggregateFunctionNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is AggregateFunctionNode; create(aggregateFunction: string, aggregated?: readonly OperationNode[]): AggregateFunctionNode; cloneWithDistinct(aggregateFunctionNode: AggregateFunctionNode): AggregateFunctionNode; cloneWithFilter(aggregateFunctionNode: AggregateFunctionNode, filter: OperationNode): AggregateFunctionNode; cloneWithOrFilter(aggregateFunctionNode: AggregateFunctionNode, filter: OperationNode): AggregateFunctionNode; cloneWithOver(aggregateFunctionNode: AggregateFunctionNode, over?: OverNode): AggregateFunctionNode; }>