Hey @Thierry ! A couple of observed things in the editor from my Postgres implementation.
First, I can’t seem to scroll the debugger list of variables (the right column of the debugger). So I have to drag the debug screen to be higher, but if there’s too many variables I can’t make it high enough to see them all.
Second, I know we’ve talked about this before, but is there any way that the labels that appear on the connections when you click ‘show label’ could have a way to tell the text to make a new line? Like the ability to add a “/n” into the label so that it displays with a line break. It would be so so useful to better visually explain what different branches are doing in workflows with lots of conditions. Pretty please!!
Finally, I’m using the Postgres node to insert an entry into a table. The ‘Results’ output doesn’t trigger the workflow to continue any further, I guess because it just receives the success signal and stops. Is this something I can solve with a more clever query perhaps that inserts a line and also returns something from this insertion to the workflow gets a result signal to continue?
Thanks for your help!
EDIT: In deep consultation with ChatGPT, I discovered the magical RETURNING clause. When added to the SQL query it means the ‘Results’ output is triggered by the inserted line.