prorm API Reference
    Preparing search index...

    Interface FaunaDbStoreOptions

    Connection options for FaunaDbStore.

    secret authenticates against a Fauna database. When a pre-built client is supplied (e.g. in tests), connect() uses it directly and skips loading the faunadb driver; the FQL builder q may likewise be injected so tests need not require the driver at all.

    interface FaunaDbStoreOptions {
        secret?: string;
        domain?: string;
        client?: any;
        q?: any;
    }
    Index
    secret?: string

    Fauna database secret / access key.

    domain?: string

    Fauna endpoint domain, e.g. db.fauna.com.

    client?: any

    A pre-built faunadb.Client to use instead of the driver.

    q?: any

    A pre-built FQL builder (faunadb.query) to use instead of the driver.