prorm API Reference
    Preparing search index...

    Interface StringAggOptions

    Barrel export for the typed SQL function-builder library. Lets callers do import { rowNumber, jsonExtract, fullTextMatch } from 'prorm' instead of hand-writing raw SQL fragments.

    Explicit (not export *) because several of these modules independently declare their own local SqlExpr type alias (same shape, different files) - re-exporting all three under one name is ambiguous.

    interface StringAggOptions {
        orderBy?: AggOrderBy;
        distinct?: boolean;
    }
    Index
    orderBy?: AggOrderBy

    ORDER BY clause applied to the concatenation (single column, or array of columns).

    distinct?: boolean

    Whether to deduplicate values before concatenating.