prorm API Reference
    Preparing search index...

    Interface BlazegraphStoreOptions

    Connection options for BlazegraphStore.

    interface BlazegraphStoreOptions {
        endpoint?: string;
        namespace?: string;
        client?: SparqlHttpClient;
        headers?: Record<string, string>;
    }
    Index
    endpoint?: string

    Base URL of the Blazegraph server. Defaults to http://localhost:9999.

    namespace?: string

    Namespace name. Defaults to kb.

    client?: SparqlHttpClient

    Optional pre-built SPARQL HTTP client (used verbatim; endpoint ignored).

    headers?: Record<string, string>

    Extra HTTP headers sent with every internal-client request.