Hi guys,
I have searched in this forum but I didn’t find any answer for my problem
What I need is to find a node within a nested n-level array, by knowing the id.
"children": [
{
"children": [
{
"children": [
{
"children": [],
"id": 8,
},
{
"children": [],
"id": 9,
}
],
"id": 5,
},
{
"children": [],
"id": 7,
}
],
"id": 2,
},
{
"children": [],
"id": 3,
},
{
"children": [],
"id": 4,
}
]I
It is, I would like to find a node inside my document (for instance node with id=4), independently of the level, only knowing the id.
I am not really sure if it is possible in CB, but It would be fine if someone solve my doubt
Thanks!