Orca Note Plugin API Documentation
    Preparing search index...

    Interface QueryView

    Configuration for a custom query view that appears in the query editor's result view switcher and renders the matched blocks.

    interface QueryView {
        defaultOptions?: Record<string, any>;
        icon: string;
        render: ComponentType<QueryViewProps>;
        title: string;
    }
    Index

    Properties

    defaultOptions?: Record<string, any>

    Optional initial options merged into the view's options object on its first selection.

    icon: string

    Tabler icon identifier for the result view dropdown.

    render: ComponentType<QueryViewProps>

    React component that renders the query results.

    title: string

    Display title shown in the result view dropdown.