Hi, as you can see from the workflow image, I have configured the flow. Now, what I want to implement is to keep the workflow running without the help of multiple webhook requests only once at first to start the workflow. Now, I initially received 50 rows of data from Supabase when I started the flow using the webhook call, and I sent them one by one to an HTTP endpoint. Once all the rows in the first batch of 50 are sent, I want to configure it to fetch another 50 rows of data and continue doing this until all the data in Supabase has been processed, or until I manually stop the flow or send a stop signal to the webhook to stop the loop.
I am unsure how to achieve this. I tried to add an “if” node to check in Supabase if the 50 items are true (meaning all have been processed), so it would call Supabase and keep running. However, this approach is not working because it says the user ID is null. How can I achieve my goal and fix the workflow? What should I use to make it work?