Does the response webhook node serve to return multiple items?


In the following flow, I obtain data from the database and, after passing it through an LLM, I want to return that result to the Respond Webhook node. I want to do this until I receive no more data from the database.
That is, I want to send multiple responses/items/results to my front end through the Respond Webhook node.
Is this possible?

The respond to webhook needs to be last. This means you need to create a loop over your workflow and once done execute the respond to webhook.

The problem is that I want to display results in real time on my front end, which is why it’s designed that way.
If I make a loop and after it completes, it goes to the final response webhook node, it wouldn’t be fulfilling the function I want.

sadly it doesnt work like that. you will need to use something in between to read the latest status from and then update that in your loop. Or you need to trigger the webhook over and over to check the status.