How to split out array correctly?

I currently have an array with 3083 elements. When I split it out into individual items it only returns 1000 at a time. How do I gett all 3083 elements out?

Hey @arabianknight hope all is good. Welcome to the community.

Here is an example of the right (only only) way of splitting 1 item of 10 elements into 10 items of 1 element:

Thank you so much. I actually know that this was how to do it but the issue I am facing is that I am splitting out 1 item with 3000 elements and when I do it only splits the first 1000. How do I go about splitting the rest??

Could you please give an example of the workflow with a split that doesn’t work? If you could, include the screenshot of an execution, where the split out shows 3000+ inputs and only 1000 outputs? It would also help to look at the split node itself, could you provide that or maybe just embed your workflow here.

Imagine my surprise when I didn’t find a single Split Out node on that workflow canvas :slight_smile:

Which part of the workflow has problems, how about other things I asked for in the last message?

I used javascript to split it out. Let me execute it and send a screenshot witha split out node. either way im running into the limitation

(post deleted by author)

i am unable to send a screenshot of the workflow. It was flagged by mods?

See if this workflow works for you:

should I be insterting this before the http request to get all items?

Just run this and see if the split out node outputs 1000 or 5000 items

it outputs 5000

it split into 5000

To summarize, arabianknight and I, we looked at the API and discovered that the API used pagination. We worked together to get all the results from the remote endpoint and then we also found the way to filter the responses to make the process even more efficient.

2 Likes