Interface DBService

interface DBService {
    batchUpsert(batchReq, update?): Promise<DBUpsertResponse>;
    query(req): Promise<DBQueryResponse>;
    upsert(req, update?): Promise<DBUpsertResponse>;
}

Hierarchy (view full)

Implemented by

Methods