Unfortunately, the API response will depend on a variable that I pass in. I am trying to get an Entry from Contentful. Entries can be of different Content Types and it will return different types of fields. For example, if I retrieve an Entry of "Config" Content Type, it may return
"fields": {
"title": {
"en-US": "Hello, World!"
},
"body": {
"en-US": "Bacon is healthy!"
}
}
And if I retrieve and Entry of "Address" Content Type, it may return
"fields": {
"street": {
"en-US": "Kallang"
},
"zip": {
"en-US": "123456"
}
}
I am trying to have the List UI be very dynamic and display the field name and value according to what is retrieved from the API. For example, "Config" Content Type will show
Title: Hello, World!
Body: Bacon is healthy!
"Address" Content Type will hsow
Street: Kallang
Zip: 123456