I would like to create ForEach loop and need advice:
- I have "Fetch" Lookup with "Select CustomerName, Country From Customers".
- It return rows like "Tesla, USA" and "Nissan, Japan". There are total 10 rows.
- I would like to run ForEach loop for 10 times and use CustomerName and Country value in pipeline.
- ForEach settings values are current set: @activity('Fetch').output (something wrong here?)
- I would like to create new Lookup inside ForEach. I would like in Lookup query "SELECT * FROM Table WHERE CustomerName = 'CustomerName' and Country = 'CountryName'"
Error of ForEach:
The function 'length' expects its parameter to be an array or a string. The provided value is of type 'Object'. 
