Displaying nested JSON in a table

Hello @intimur,

You would need to use JS to manipulate your data to get the items you need within this nested field.

Here is a sample code that takes in your value, use Map to retrieve the values within "fields"

let x = {{ state1.value.records }}
let y = x.map(element => ({"id": element.id, "createdTime" : element.createdTime, "name": element.fields.name,"email": element.fields.email }))
return y

1 Like