prorm API Reference
    Preparing search index...

    Interface FlureeStoreOptions

    Connection options for FlureeStore.

    interface FlureeStoreOptions {
        baseURL?: string;
        ledger: string;
        client?: FlureeHttpClient;
        headers?: Record<string, string>;
    }
    Index
    baseURL?: string

    Base URL of the Fluree server. Defaults to http://localhost:8090.

    ledger: string

    Ledger (network/db) name, e.g. 'my/ledger'.

    client?: FlureeHttpClient

    Optional pre-built HTTP client; when provided, baseURL is ignored.

    headers?: Record<string, string>

    Extra HTTP headers (e.g. an auth Authorization bearer).