Network Children
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Network Children
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 ?
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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);
