Hello, I have a tree in this form
[ { "name": "InvolvementType", "children": [ { "name": "FULL_TIME", "children": null }, { "name": "PARTIAL", "children": null }, { "name": "EPISODIC", "children": null } ] }, { "name": "IncomeStatus", "children": [ { "name": "BILLABLE", "children": null }, { "name": "NOT_BILLABLE", "children": null } ] }, { "name": "technology", "children": [ { "name": "Android", "children": null }, { "name": "IOS", "children":[ { name: 'Objective C', children: null }, { name: 'Swift', children: null } ] } ] } ]
I need to select "swift" to understand that this tree elite refers specifically to "technology" and not to "InvolvementType". How to search the tree?