Hello bubble forum, it’s been a while.
I’m pulling some data from an API and saving it to a user. The data consists of multiple entries,
Item 1
Item 2
Item 3
etc.
To save them as individual database entries on the bubble side I’m running a recursive workflow that connects, collects item 1 and saves it, collects item 2 and saves it, and so on.
The problem with this approach is the number of API calls this generates as each time the workflow runs, it results in a new api call, for the same list of items. So my question is, have someone come up with a better way of doing this?