how do i grab my sharepoint list items that are in a nested array? its a multi choice field, comma separated in the spo list, but looks like so in the odata?
my flow is a get items -> appy to each (outputs (GET ITEMS)[body/value] -> compose
{
"@odata.type" : " stuff"
"ID":-1
"Value": "what i want"
},
{
"@odata.type" : " stuff"
"ID":-1
"Value": "ALSO what i want"
}
how do i get these values? i need them displayed in a custom html table but id be happy just to know how to extract each one.