prorm API Reference
    Preparing search index...

    Type Alias FullTextMatchMode

    FullTextMatchMode: "natural" | "boolean" | "phrase"

    Search mode for fullTextMatch().

    • 'natural' (default): natural-language / "find documents about this text" search.
    • 'boolean': operator-aware search (dialect-specific boolean/text-search operator syntax, e.g. MySQL boolean-mode +word -word "phrase", MSSQL CONTAINS, Oracle Text CONTAINS operators).
    • 'phrase': exact-phrase search where the dialect has a distinct, better-suited construct for it (e.g. Postgres websearch_to_tsquery, MySQL boolean-mode quoted phrase, MSSQL/SQLite quoted phrase).