How to perform a cloud function using Sync and Watch Address but without saving the data in the database

Hello, I want to use Sync and Watch Address https://docs.moralis.io/moralis-server/automatic-transaction-sync/historical-transactions, but I just need to call a cloud function when transfers (tokens, nfts) are made, but without saving the data in the database, since it is not necessary and by the way also eliminate the other classes such as balance/pending since they are not needed and take up space unnecessary

For now I thought of using an afterSave in xxxTokenTransfers and delete all the rows of the other classes and remove the object with that id from xxxTokenTransfers, but maybe there is something more efficient.

Thank you

you could call web3api functions from time to time if you don’t need almost real time data

thanks, but i need real time data