My goal is to extract the IssueId
from the JSON data provided below:
[
{
"-MERcLq7nCj5c5gwpYih":
{"CreateDate":"2020-08-11T08:27:13.300Z","Id":"-MERcLq7nCj5c5gwpYih","IssueId":"-ME3-tuhyqlaRdZCRapj","StatusId":"2", ...},
"-MERdViSr8oCUGsCHouS":
{"CreateDate":"2020-08-11T08:32:15.901Z","Id":"-MERdViSr8oCUGsCHouS","IssueId":"-ME3-tuhyqlaRdZCRapj","StatusId":"3", ...},
...
},
...
]
I am looking to retrieve the most recent status ID and parse it into an object, but I'm facing a challenge as there are no keys for me to select each item individually.
I have looked at other TypeScript JSON examples, but none seem to address this specific scenario. Is there a way for me to access the content without referencing the value -MERcLq7nCj5c5gwpYih
?