Hi,
I have an array of objects. I need to find the id by the it’s name with in an object in an array. Previously, I was able to use get(map()) for that. Now, there is an added level to the object.
This is simplified but I attached the full output:
"data": {
"edges": [
{
"node": {
"id": "ASDFRW==",
"name": "Location Alpha"
}
},
{
"node": {
"id": "FRGTEE==",
"name": "Location Beta"
}
}
]
}
Not sure how to best approach this, as get(map()) only looks at the first level of the array you specify. What would be the best approach?
make_output_locations.txt (868 Bytes)