Hi Everyone I’m new to n8n.
When I try to send data from one node to another, it says ‘no items’ — why is it empty?
Hi @ajmmm
Welcome to the community
This issue usually happens when the previous node doesn’t return any data, so the workflow has nothing to pass forward. Another common reason is using the wrong path in expressions — for example, instead of pointing directly to the right field, you may need to use {{$json["fieldName"]}}.
Sometimes the data is actually there but stored inside arrays or nested objects, which makes it invisible at first glance. In such cases, you can restructure the data using a Set node or a Function node to make sure the values are properly exposed for the next step in your workflow.
Hello, can you share your workflow here? It makes us easier to debug what happen with your workflow
Thank you for the response .let me check