I have a use case where a graphic can contain data relating to other graphics that have been "merged". The data is stored in an attribute property called `innterGraphics` that contain an array of graphic attributes objects (example below).
I want to display the `innerGraphics` in a popup but I'm not seeing a native method for representing arrays in a popup. Is there something I'm missing?
{
"aggregateGeometries": null,
"geometry": {
"spatialReference": {
"wkid": 4326
},
"x": -72.93538699999993,
"y": 41.332516000000055
},
"symbol": null,
"attributes": {
"crashId": 1,
"symbolType": "Sideswipe, Same Direction",
"groupId": 25,
"direction": null,
"date": null,
"innerGraphics": [
{
"crashId": 222,
"symbolType": "Sideswipe, Same Direction",
"groupId": 20,
"direction": 0,
"date": 1682173620000,
"severity": "O",
"narrative": ""
},
{
"crashId": 333,
"symbolType": "Front to Rear",
"groupId": 14,
"direction": 0,
"date": 1674143040000,
"severity": "O",
"narrative": ""
},
{
"crashId": 111,
"symbolType": "Front to Rear",
"groupId": 22,
"direction": 0,
"date": 1697535840000,
"severity": "O",
"narrative": "Narrative unavailable for this crash."
}
]
},
"popupTemplate": null
}