External collection only stores first data for each array

Hi Guys,

As per my understanding Adalo doesnot support multiple rows within a dataset. It only stores first array element in the external collection. Please correct me if I am wrong. The same thing happens even with the custom action data retrieval. I can see there is another post regarding the same which has been closed without any proper answer

In the below example , Adalo will be able to list the building address , since it has only one element, but for floor details and room details it will only list the first elements.

“buildings”: [
{
“floor”: [
{
“room”: [
{
“name”: “Room 1”
},
{
“name”: “Room 2”
},
{
“name”: “Room 3”
},
],
“name”: “Floor 1”
},
{
“room”: [
{
“name”: “Room 4”
},
{
“name”: “Room 5”
},
{
“name”: “Room 6”
}
],
“name”: “Floor 2”
},
],
“address”: {
“city”: “XYZ”,
“street”: “ABC”,
},

Yes this is the case currently. Unfortunately, Adalo does not support pulling in arrays within external collections just yet.

2 Likes

Thanks for the confirmation . Hope Adalo will consider this feature for future release

2 Likes

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.