I'm trying to run a lookup against a list of values in an array. I have a CSV which look as follows: id x y 123 Data Data2 321 Data Data2 456 Data3 Data3 The field from the search is is an array which looks as follows: ["123", "321", 456"] I want to map the lookup value. Do I need to iterate over the field or can I use a lookup or is the best option?
... View more