08-21-2024 05:44 AM
Hi
I have the below JSON as input
[
{
"root": [
{
"id": "1",
"nodes": [
],
"parent": "0",
"tags": [
"Approved",
"1.0"
],
"text": "A"
}
]
},
{
"level2": {
"id": "2",
"nodes": [
{
}
],
"parent": "1",
"tags": [
"Approved",
"1.0"
],
"text": "B"
}
}
]
I want the output as
Solved! Go to Solution.
08-21-2024 06:24 AM
Hello @moizB,
Please refer to the attached pipeline and let me know if it helps you in achieving the desired output structure.
Regards,
Aleksandar.
08-21-2024 06:24 AM
Hello @moizB,
Please refer to the attached pipeline and let me know if it helps you in achieving the desired output structure.
Regards,
Aleksandar.
08-21-2024 10:37 PM
Thanks @Aleksandar_A ! That is exactly what I was looking for