Impossible to reuse a data from previous step in workflow

Hi, I’m trying to build a workflow that uses result from a previous step, but it doesn’t seem to work (see below, the step “uno” which is just an insert, doesn’t give me the infos of the new row) :

Any hint about this ?

Thanks

I feel like that should work, do the rest of the nodes give you results?
if they do and thats the only one giving you an issue, you could just fetch the data you just inserted and use the fetched data instead of the result. or add the same data to a variable and use the variable.

1 Like

You should be able to return the data that was inserted in Supabase, if I remember correctly. Isn’t there an option in the Supabase node that let’s you choose between return nothing, return id or return the whole row?

1 Like

Thank you both for your reply. It seems that I missed the update where indeed, you can choose to return rows (directly in Weweb), and what to return from these rows !

It’s very handy, as long as you know its existence haha