So I have budgeting app that use plaid to pull transactions. I am currently using @lostsheep plugin to use plaid and pull transactions.
The transactions is going into an infinite recursion loop since it is alwasy pulling transactions.
@lostsheep gave me some directions on how to possibly deal with it. However, it is something I have never really done before and I would hate to break one of the most important parts of my app. But I also want to avoid allowing the depth of WF to be high and not have the recursion protection when I need it. Lost sheep said it was beyond his scope for the plugin so I am reaching out to see if anyone could help.
This is the current setup and what Lost Sheep told me to do.
ps. I did read the bubble doc on schedule api wf as a list, but it is not helpful. I need to know what is the outcome I am actually aiming for for me to figure it out.
Hey man, I built something just like this. The simple answer is to use the DATA API to create all the objects.
There is no “loop” or “recursion” in that way. With your current system, there will be recursion no matter what since you need to run 1 Action Per Transaction.
With the Create via API method you can create all the records in one action.
If you need help let me know.
CC: @lostsheep just FYI this method worked best for me, if others ask as well