This commit is contained in:
boufni95 2025-09-15 18:35:28 +00:00
parent 6c21ab3f71
commit 811029d84e

View file

@ -449,6 +449,9 @@ class StorageProcessor {
} }
private async handleFind(operation: FindOperation<any>) { private async handleFind(operation: FindOperation<any>) {
if(operation.entity == 'BalanceEvent') {
console.log(operation.q)
}
const res = await this.handleRead(operation.txId, eM => { const res = await this.handleRead(operation.txId, eM => {
return eM.getRepository(this.getEntity(operation.entity)).find(operation.q) return eM.getRepository(this.getEntity(operation.entity)).find(operation.q)
}) })