I created this workflow except that in the wait function that I set to 3 seconds I would like it to pass over one piece of data at a time every 3 seconds but I haven’t figured out how to achieve this yet
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
@IvanLao , you can add Loop Over Items node before the Wait node as shown below
I didn’t quite understand how to implement the loop function. I have a workflow like this and I would like the http node to be activated one at a time
@IvanLao , it could help to help you if you could copy/paste you workflow in here rather than providing a screenshot. Make sure to do it in between a pair of triple backticks. Like this (have to use screenshot myself here) to demonstrate what I mean.
Here’s an example (for demonstration purposes but hopefully you can recognize your workflow)
Note how HTTP request is sent one at a time with a delay (to prevent excess in request sent per minute, for example). You can prepare the output of HTTP Request node for further processing once all the requests have been sent.
The other (top) loop will kick off when all the iterations have completed, and “All responses” node will produce the list of all the responses that you shaped in “Shape the response” node.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.