Refering to screenshot attached Does

(Refering to screenshot attached) Does this field support json path expressions ? For eg, if i want to access field inside array of objects and output array of strings, can use values like
field.*.key
?

I have object like this:
{ 
"media": [
{
"url": "url1"
}, 
{
"url": "url2"
}
]
}


I want to display the media column in table as an array of urls like this:
media: ["url1", "url2"]
Screenshot_2023-09-13_at_8.21.48_PM.png
Was this page helpful?