prorm API Reference
    Preparing search index...

    Interface HavingLogical<T>

    The logical combinators available inside a HAVING clause, applied after grouping rather than before it.

    interface HavingLogical<T> {
        $and?: HavingOptions<T>[];
        $or?: HavingOptions<T>[];
        $not?: HavingOptions<T>;
    }

    Type Parameters

    • T
    Index
    $and?: HavingOptions<T>[]
    $or?: HavingOptions<T>[]