Recently, there are 4 new APIs were added in document store: - [x] Aggregate - CloseableIterator<Document> aggregate(final org.hypertrace.core.documentstore.query.Query query) - [x] Find - CloseableIterator<Document> find(final org.hypertrace.core.documentstore.query.Query query) - [x] count - long count(final org.hypertrace.core.documentstore.query.Query query) - [x] Bulk Operation On Array Value - BulkUpdateResult bulkOperationOnArrayValue(BulkArrayValueUpdateRequest request) throws Exception - [x] Bulk Update - BulkUpdateResult bulkUpdate(List<BulkUpdateRequest> bulkUpdateRequests) throws Exception For the above APIs, we have implementation for MongoDB, however, we are lacking its support for Postgres. Can we add the support the support?
Recently, there are 4 new APIs were added in document store:
Aggregate
Find
count
Bulk Operation On Array Value
Bulk Update
For the above APIs, we have implementation for MongoDB, however, we are lacking its support for Postgres. Can we add the support the support?