prorm API Reference
    Preparing search index...

    Interface MarkLogicStoreOptions

    Connection options for MarkLogicStore.

    host/port/user/password/authType are passed to createDatabaseClient. When a pre-built client is supplied (e.g. in tests), connect() uses it directly and skips loading the marklogic driver; queryBuilder may likewise be injected.

    interface MarkLogicStoreOptions {
        host?: string;
        port?: number;
        user?: string;
        password?: string;
        authType?: string;
        database?: string;
        client?: any;
        queryBuilder?: any;
    }
    Index
    host?: string
    port?: number
    user?: string
    password?: string
    authType?: string
    database?: string
    client?: any

    A pre-built MarkLogic client to use instead of the driver.

    queryBuilder?: any

    A pre-built queryBuilder to use instead of the driver.