prorm API Reference
    Preparing search index...

    Interface WhereLogical<T>

    The logical combinators available inside a WHERE clause.

    interface WhereLogical<T> {
        $and?: WhereOptions<T>[];
        $or?: WhereOptions<T>[];
        $not?: WhereOptions<T>;
    }

    Type Parameters

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