prorm API Reference
    Preparing search index...

    Interface OrientDbStoreOptions

    Connection options for OrientDbStore.

    host/port locate the server; database/username/password open a session against a specific database. When a pre-built client (an open session) is supplied (e.g. in tests), connect() uses it directly and skips loading the orientjs driver.

    interface OrientDbStoreOptions {
        host?: string;
        port?: number;
        database?: string;
        username?: string;
        password?: string;
        client?: any;
    }
    Index
    host?: string
    port?: number
    database?: string
    username?: string
    password?: string
    client?: any

    A pre-built OrientDB session to use instead of the driver.