cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

Network

Rayon_11
10-Marble

Network

I have created a network hierarchy in composer now I want to check who is parent or who is its children so for that what I have to do please explain like do I have to write the services?

 

Thanks,

Lav

 

1 ACCEPTED SOLUTION

Accepted Solutions

Hi @Rayon_11 

 

To get all hierarchy in Network you can use the ''GetNetworkConnections" service 

 

 

// result: INFOTABLE dataShape: "NetworkConnection";
let result = Networks["NetworkName"].GetNetworkConnections({
	maxDepth: 20 /* NUMBER */
});

 

 

The output will look like this :

Velkumar_1-1684412416280.png

 

To find the parent of the child, you can filter the above result based on the 'to' column (Child) and its "from" column will be the parent of it

 

To get a child list based on parent, you can use the "GetChildConnections" service

 

 

// result: INFOTABLE dataShape: "NetworkConnection"
let result = Networks["NETWORKNAME"].GetChildConnections({
	name: "PARENTNAME" /* STRING */
});

 

 

/VR

View solution in original post

1 REPLY 1

Hi @Rayon_11 

 

To get all hierarchy in Network you can use the ''GetNetworkConnections" service 

 

 

// result: INFOTABLE dataShape: "NetworkConnection";
let result = Networks["NetworkName"].GetNetworkConnections({
	maxDepth: 20 /* NUMBER */
});

 

 

The output will look like this :

Velkumar_1-1684412416280.png

 

To find the parent of the child, you can filter the above result based on the 'to' column (Child) and its "from" column will be the parent of it

 

To get a child list based on parent, you can use the "GetChildConnections" service

 

 

// result: INFOTABLE dataShape: "NetworkConnection"
let result = Networks["NETWORKNAME"].GetChildConnections({
	name: "PARENTNAME" /* STRING */
});

 

 

/VR

Top Tags