prorm API Reference
    Preparing search index...

    Interface WhereObject

    Represents a WHERE condition for complex queries

    interface WhereObject {
        $type: "where";
        col: Literal | Col | Fn;
        value: unknown;
    }
    Index
    $type: "where"

    Type identifier for WHERE

    col: Literal | Col | Fn

    The column or expression to compare

    value: unknown

    The value or condition to compare against