Member Junction
    Preparing search index...

    Type Alias FullTextSearchParams

    Parameters for the FullTextSearch method.

    type FullTextSearchParams = {
        EntityNames?: string[];
        MaxRowsPerEntity?: number;
        SearchText: string;
    }
    Index

    Properties

    EntityNames?: string[]

    Optional list of entity names to restrict the search to. Each entity in this list MUST have FullTextSearchEnabled=true — entities without FTS enabled will be silently skipped. If not provided, ALL entities with FullTextSearchEnabled=true are searched.

    MaxRowsPerEntity?: number

    Maximum number of rows to return per entity. Defaults to 10 if not specified. Helps control result set size when searching across many entities.

    SearchText: string

    The search text to find across entities. This is passed as UserSearchString to RunView, which routes it through the database-native full-text search infrastructure (SQL Server FREETEXT functions or PostgreSQL tsvector queries).