prorm API Reference
    Preparing search index...

    Interface VirtuosoStoreOptions

    Connection options for VirtuosoStore.

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

    Base URL of the Virtuoso server. Defaults to http://localhost:8890.

    sparqlPath?: string

    SPARQL endpoint path. Defaults to /sparql.

    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.