prorm API Reference
    Preparing search index...

    Interface FullTextSearchOptions

    Full-text search options for MATCH AGAINST (MySQL) and tsvector (PostgreSQL)

    interface FullTextSearchOptions {
        mode?: "boolean" | "natural";
        fields?: string[];
    }
    Index
    mode?: "boolean" | "natural"

    Search mode: 'natural' for natural language mode, 'boolean' for boolean mode

    fields?: string[]

    Columns to search (for MATCH AGAINST)