Member Junction
    Preparing search index...

    Initial navigation state from URL query parameters. Used for deep linking into the Data Explorer.

    interface DataExplorerDeepLink {
        entity?: string;
        filter?: string;
        mapMode?: string;
        record?: string;
        viewId?: string;
        viewMode?: DataExplorerViewMode;
    }
    Index

    Properties

    entity?: string

    Entity name to navigate to

    filter?: string

    Filter text to apply (omitted when viewId is present — view carries its own filter)

    mapMode?: string

    Map render mode (point/choropleth/heatmap) — only relevant when viewMode is 'map'

    record?: string

    Record ID or composite key string to select

    viewId?: string

    Saved view ID to load (uses view's filters/sort/grid state)

    View mode to use (grid/cards/timeline/map)