I have a RetoolDB table and one of the columns contains an array. I have an app with a table displaying the RetoolDB Table but I want a certain column to display data from inside the array but it doesn't display at all.
When I have the mapped value as {{item}} then it displays the entire array but if I put {{item.address1}} or any other nested item, then it doesn't display anything.
Not sure what I am doing wrong or if I need to transform the data first?
One last question.. lets say I have a simple text component and I want to display the address based on the table row that is selected... I tried {{ JSON.parse(data).table1.selectedRow.address1}} but it didn't work. How would you go about displaying the parsed data from the array?