Hi,
I have a output which look some thing like this…
[
{
"finding_region": [
{
"component": "107285",
"new_status": "PD"
},
{
"component": "107286",
"new_status": "PD"
},
{
"component": "115532",
"new_status": "PD"
},
{
"component": "116317",
"new_status": "PD"
},
{
"component": "116322",
"new_status": "PD"
}
]
}
]
The above is an output from a SET node…
How can i group all them togeather to getting some thing like this…
"finding_region": {
"component": "107285",
"component": "107286",
"component": "115532",
"component": "116317",
"component": "116322",
}
Basically i want to split the array and get only the component so that i can further process the values…
If there is an option to do this with out a fucntion node that would be great
