prorm API Reference
    Preparing search index...

    Interface FusekiStoreOptions

    Connection options for FusekiStore.

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

    Base URL of the Fuseki server. Defaults to http://localhost:3030.

    dataset?: string

    Dataset name. Defaults to ds.

    client?: SparqlHttpClient

    Optional pre-built SPARQL HTTP client. When provided it is used verbatim and endpoint is ignored; otherwise an internal fetch-based client is built against endpoint on connect().

    headers?: Record<string, string>

    Extra HTTP headers sent with every internal-client request.