Member Junction
    Preparing search index...

    Type Alias FullTextSearchResultItem

    A single matched record from a full-text search.

    type FullTextSearchResultItem = {
        EntityName: string;
        RecordID: string;
        Score: number;
        Snippet: string;
        Title: string;
    }
    Index

    Properties

    EntityName: string

    The name of the entity this result came from (e.g., "MJ: AI Models")

    RecordID: string

    The primary key value of the matched record

    Score: number

    Relevance score for ranking. Uses rank-based scoring (1/(rank+1)) to be compatible with Reciprocal Rank Fusion (RRF) when combined with vector search results.

    Snippet: string

    A text snippet providing context for the match, sourced from the entity's best "description" field (Description, Summary, Body, etc.). Truncated to ~200 chars.

    Title: string

    The display title for this result, sourced from the entity's best "name" field (Name, Title, Subject, etc.)