Member Junction
    Preparing search index...

    Request to navigate to a specific nav item within an application. Supports setting URL query parameters after navigation.

    interface OpenNavItemNavRequest {
        appName?: string;
        navItemName: string;
        openInNewTab?: boolean;
        queryParams?: Record<string, string>;
        sourcePanelId: string;
        type: "OpenNavItem";
    }

    Hierarchy (View Summary)

    Index

    Properties

    appName?: string

    Application name (e.g., 'Data Explorer'). If omitted, stays in current app.

    navItemName: string

    Navigation item label within the app (e.g., 'Queries')

    openInNewTab?: boolean

    Whether to open in a new tab/window

    queryParams?: Record<string, string>

    URL query parameters to apply after navigation

    sourcePanelId: string

    Source panel ID that initiated the request

    type: "OpenNavItem"

    Type discriminator for the navigation request