prorm API Reference
    Preparing search index...

    Interface StardogStoreOptions

    Connection options for StardogStore.

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

    Base URL of the Stardog server. Defaults to http://localhost:5820.

    database?: string

    Database name. Defaults to db.

    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.