Member Junction
    Preparing search index...

    Search request parameters

    interface SearchRequest {
        ActiveFilters: Record<string, string[]>;
        IncludeSources: ("entity" | "vector" | "fulltext" | "storage")[];
        MaxResults: number;
        MinScore?: number;
        Query: string;
        ScopeIDs?: string[];
    }
    Index

    Properties

    ActiveFilters: Record<string, string[]>

    Active filter selections

    IncludeSources: ("entity" | "vector" | "fulltext" | "storage")[]

    Which search sources to include

    MaxResults: number

    Maximum number of results to return

    MinScore?: number

    Minimum relevance score (0-1) to include in results. Results below this threshold are filtered out. Default: 0.35 (35%).

    Query: string

    The search query string

    ScopeIDs?: string[]

    Optional array of MJ: Search Scopes record IDs selected in the UI scope selector. When provided, the server resolves each scope and runs only those constrained providers. When omitted (or all selected scopes are IsGlobal), behavior is equivalent to the pre-scope unconstrained search.