Member Junction
    Preparing search index...

    Type Alias FullTextSearchResult

    Result of a FullTextSearch operation across multiple entities.

    type FullTextSearchResult = {
        ElapsedMs: number;
        EntitiesSearched: number;
        ErrorMessage?: string;
        Results: FullTextSearchResultItem[];
        Success: boolean;
        TotalCount: number;
    }
    Index

    Properties

    ElapsedMs: number

    Time taken to execute the search in milliseconds

    EntitiesSearched: number

    Number of entities that were searched

    ErrorMessage?: string

    Error message if Success is false

    All matched records across all searched entities, ordered by relevance score descending

    Success: boolean

    Whether the search completed successfully

    TotalCount: number

    Total number of results found