Let’s say i have an array with a tags section,. For each item 0,1,2 etc it has the same structure.
Now if I wanted to use a switch to filter the value of the “NAME” key, and have each matching result go down a specific route, what’s the best way to do that? Ideally without a function node so others can use the flow, but if that’s what it has to be, how would that be done?
examples.
Item 1, Name = MM: auto
Item 2, Name = MM: auto
Item 3, Name = MM: auto
Item 1, Name = MM: Validated
Item 2, Name = MM: Validated
Item 3, Name = MM: Validated
Item 1, Name = MM: Locked
Item 2, Name = MM: Locked
Item 3, Name = MM: Locked
Ah like that.
I think you would need quite a few nodes to split it out and check. If you do not want to use the function node that is.
I might be wrong. But cannot think of an easy way with one or 2 nodes to do this without a function node.