Add a list of things

I have a JSON filter which gives a result of a list of IDs:

and I want to use those IDs to do a create or update on my table in my database. I’m using them as this:

I am using a schedule API workflow on a list because from my understanding, it would add things to my database. But, when I look at the evaluator in debug mode, it’s looking like this:

It’s not evaluating the list of IDs individually, but it’s treating the whole list as one ID. How do I change it in such a way that each ID separated by a comma is evaluated properly?

Schedule on a list of texts, the source would be your Ids:split by (,). That will render them as a list.

Alternatively you could use the API connecter to bulk create things, which would be a lot faster for larger data segments.