Loop problem with supabase

I have get row node from supabase but loop action works for only first item.
No description
Solution:
hey @Burak Dönertaş, if you only plan on looping over each item to return it then you don't really need to use the Loop node here. You can just return the result from the supabase node directly.
Jump to solution
5 Replies
AI Support
AI Support3w ago
AI Support Bot Information
<@395574845494001666> you can react on the relevant answer (message) with a ✅ in this thread when you think it has been solved, by the bot or by a human! Anyone can react on this message with a ❌ if the GPT bot is unhelpful or hallucinating answers. Please note: Team members will review and answer the questions on best efforts basis.
AI Support
AI Support3w ago
AI Response
It looks like there might be an issue with how nodes are being handled within the loop of your workflow. Based on what I've found, here are a couple of steps and a template example you might find useful to ensure your workflow processes all items in a loop properly: 1. Ensure Proper Loop Configuration: Confirm that the loop is properly configured to iterate through every item in the list and execute its actions on each item. 2. Template Example: There's a template you can refer to which demonstrates how to effectively configure nodes within a loop in BuildShip: - Supabase Create Row and Loop Example . This should help you see a practical implementation of looping through data and performing actions on each item. 3. Using Expression Editor: Ensure that you are using the dot notation correctly within the Expression Editor to access the items in the list. This ensures you are referencing each item accurately. If these steps do not resolve your issue, it might be beneficial to provide more specific details about your workflow or reach out for support through the in-app support option.
BuildShip AI Support
Burak Dönertaş
my data output from supabase. but loop doesn't work
No description
Solution
Luis
Luis3w ago
hey @Burak Dönertaş, if you only plan on looping over each item to return it then you don't really need to use the Loop node here. You can just return the result from the supabase node directly.
Burak Dönertaş
thanks. I solved it. return node stops the loop. I get it.