Alright so i have spent the last couple of months collecting a huge list of vehicle makes, models, variants, versions & Images with technical specifications for an API service/web that i am building. The challenge now is enabling Bubble to return details of nested data (Lists that exist under a row of data)
Using the above image as an example; I would like bubble to return details of the “LIST_Models” and not just Unique IDs of the Models like in the image below!
This is what i want to receive (Notice the models are nested with details)
{
"makes":[
{
"id":200002038,
"name":"Acura",
"niceName":"acura",
"models":[
{
"id":"Acura_ILX",
"name":"ILX",
"niceName":"ilx",
}
]
Does anyone have any suggestions or ideas