Fairly new to n8n here and I’ve got a flow question. Basically I’m trying to work out how to make the flow shown in “C” in n8n. I’ve gotten A and B to work, and this is all that’s missing. B was implemented using a Code node that outputs a structure similar to B. Thanks for any assistance!
Thanks @barn4k - my question is how can I run “C”, the loop-inside-a-loop after getting my result B (your code is doing the reverse). I’m new to n8n so maybe I’m missing something really basic?
Given input data of a structure that contains 1 or more Items and 1 or more SubItems, what workflow would iterate through the structure, create (e.g.) a new Monday.com item for each Item, and then Monday.com sub-items under this item for each SubItem in the input structure?
Any node (e.g. Split Out) added immediately after the initial Item is created in Monday, can’t see the subItems, the same goes for a Loop Over Items node.
I’d like “1” to execute for every top-level item, and “3” for every sub-item. The problem is that “2” doesn’t receive the original item to split since “1” is in the way (if that makes sense). “3” needs to use the output from “1” as well as from “2”.