Member Junction
    Preparing search index...

    Type Alias EntitySearchResult

    One ranked result from IMetadataProvider.SearchEntity.

    type EntitySearchResult = {
        components: { lexical?: number; semantic?: number };
        entityRecordDocumentId: string | null;
        matchType: "lexical" | "semantic" | "hybrid";
        recordId: string;
        score: number;
    }
    Index

    Properties

    components: { lexical?: number; semantic?: number }

    Raw per-list scores, for callers that want to audit or re-rank.

    entityRecordDocumentId: string | null

    Pointer to the matching EntityRecordDocument row. Null when result came purely from the lexical pass.

    matchType: "lexical" | "semantic" | "hybrid"

    Which signal(s) contributed.

    recordId: string

    Record ID within the target entity (suitable for Load() on the entity object).

    score: number

    Final blended/single-mode score.