Is it possible to construct a hierarchical topology, and if so, how do users pass data for that?
Thank you for your quick reply, Yes, I'm trying to use the Graph Feature in Kibana for hierarchical topology, but I'm having trouble figuring out how to transfer the data with parent-child relationships.
Eg:
[{
"number": "1",
"name": "John",
"Category": "Sales",
"date": "2022-12-12T04:13:47Z"
},
{
"number": "2",
"name": "Jorge",
"Category": "Manager",
"date": "2022-12-12T04:13:47Z"
},
{
"number": "3",
"name": "Games",
"Category": "Pricing",
"date": "2022-12-12T04:13:47Z"
},
{
"number": "4",
"name": "Gilbert",
"Category": "Pricing",
"date": "2022-12-12T04:13:47Z"
},
{
"number": "5",
"name": "Dan",
"Category": "Billing",
"date": "2022-12-12T04:13:47Z"
}]
Note : Here People under Manager category is parent and people under Sales & Pricing category are child, and people under billing are child of Pricing category.
Help me on how to pass the data for this parent-child relationship based on graph pattern.

