Skip to main content
1-Visitor
September 22, 2017
Solved

Network Children

  • September 22, 2017
  • 1 reply
  • 1688 views

Hey,

I would like to know if there is a way to get the children of a node inside a network programaticaly.

So, let's say in my network I have parent A and I want all its children programmaticaly.

How would i do that in javascript ?

    Best answer by smanley

    Hi Frederik,

    You can use the GetChildConnections code snippet as shown below. The name parameter will be the name of the node to return child connections for.

    var params = {

    name: undefined /* STRING */

    };

    // result: INFOTABLE dataShape: NetworkConnection

    var result = Networks["MyNetwork"].GetChildConnections(params);

    1 reply

    smanley5-Regular MemberAnswer
    5-Regular Member
    September 22, 2017

    Hi Frederik,

    You can use the GetChildConnections code snippet as shown below. The name parameter will be the name of the node to return child connections for.

    var params = {

    name: undefined /* STRING */

    };

    // result: INFOTABLE dataShape: NetworkConnection

    var result = Networks["MyNetwork"].GetChildConnections(params);