I have a JSON file formated like this:
[
{
id: 2011136021,
tree_level: 3,
main_category_id: 105,
sub_nodes: [
128001,
128002,
128003,
2011136046
],
}
]
I want to return the value of sub_nodes based on the parent ID 2011136046:
sub_nodes: [
128001,
128002,
128003,
2011136046
],
Can someone please help me with that?