prorm API Reference
    Preparing search index...

    Interface WhereClauseResult

    Result of building a WHERE clause: the SQL fragment (with ? placeholders) and its bound values

    interface WhereClauseResult {
        sql: string;
        values: unknown[];
    }
    Index
    sql: string
    values: unknown[]