I have an array like this in a power automate flow:
[
{
"fileUri": "1YS000.xml"
},
{
"fileUri": "ZJBGF.xml"
}
]
I need to extract the value of each element so that the resulting output is ["1YS000.xml","ZJBGF.xml"]
I can do that using an 'apply to all' loop but that takes several minutes. Is there a better way to do this? I was trying to use Select, but I just got the exact same output.