prorm API Reference
    Preparing search index...

    Interface GraphdbStoreOptions

    Connection options for GraphdbStore.

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

    Base URL of the GraphDB server. Defaults to http://localhost:7200.

    repository?: string

    Repository id. Defaults to repo.

    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.