I’m essentially searching up names. these names return users with varying follower counts (10 users), I take the user with the highest following count and discard the rest.
I don’t get the point. You are taking 10 users, and then filtering them to find the most followed one. So you will have only 1 user after the filtering. Where is the multi-threading here?
No. sorry for not clarifying. I am searching up 1 user at a time. that returns 10 results, of those 10 results I pick the most followed user. The limitation is that I can only search 1 user at a time, if I search 10 users, and return 100 results, instead of getting 10 users (one for each search) with the biggest following, I will get the biggest user out of the 100.
Something like this may work.
In the example I have 3 regions that I’m interested in (Europe, Africa, Americas). Then I receive all regions and in the Code node a have a filter that looks for each of the interested regions and finds the country with highest population in that region.