Searching specific structure from array with 1 variable

I need to search same way as find note, but only with one variable. How could i do this?

There’s no magic node for this. You step through an array and compare results. Use a Break loop to make this inefficient method a wee bit more performant.


Or use a Map (Dictionary) where you pair Keys with Values. So a Name | Struct map, for example. Unlike array iteration, this method is very efficient.