Hello All!
I have a Retool DB with a column that has an array inside as shown below:
I want to create a list component inside my app that displays all the stores but I am unable to. Do I need to transform the data somehow?
Thank you all!
Hello All!
I have a Retool DB with a column that has an array inside as shown below:
I want to create a list component inside my app that displays all the stores but I am unable to. Do I need to transform the data somehow?
Thank you all!
I ended up using a transformer and used this:
return JSON.parse(data.store);
Thanks!