Member Junction
    Preparing search index...

    Type Alias SearchEntityParams

    Per-entity input for IMetadataProvider.SearchEntity and IMetadataProvider.SearchEntities. Bundles the entity name, the search text, and the ranking options into a single transport-friendly shape so batched calls fit one GraphQL payload.

    type SearchEntityParams = {
        entityName: string;
        options?: SearchEntitiesOptions;
        searchText: string;
    }
    Index

    Properties

    entityName: string

    Name of the entity to search (e.g., 'MJ: Entities', 'Accounts').

    Ranking mode + knobs. See SearchEntitiesOptions.

    searchText: string

    Free-text query. Empty/whitespace returns an empty result.