Hi I need to extract an array value which is the output of a Select operation.
Here's the Select output:
[
{
"@odata.etag": "\"2\"",
"ItemInternalId": "2",
"ID": 21,
"Title": "Submission Fault",
"Person": {
"@odata.type": "#Microsoft.Azure",
"Claims": "i:0#.f|membership",
},
"Semester": "Input Faults",
"EngineeringStatus": "Exported",
"Author": {
"@odata.type": "#Microsoft.Azure",
"Claims": "i:0#.f|membership"
},
"Author#Claims": "i:0#.f|membership",
"Editor": {
"@odata.type": "#Microsoftr",
"Claims": "i:0#.f|membership",
"Picture": ""
}
}
]
The key I need to target is the "EngineeringStatus" key, which only appears in the 2nd record in the array.
I need the value only.
I tried a Compose with expression: outputs('Select'), but this returns object:
[
"Exported"
]
I need: Exported
Thanks