Untitled

 avatar
unknown
plain_text
10 months ago
334 B
4
Indexable
// result: INFOTABLE dataShape: "NetworkConnectionWithTemplate"

let network = Networks["TestNetwork"].GetNetworkConnections({
	maxDepth: undefined /* NUMBER */
});

network.rows.forEach((row)=>{
	row.from=row.from.substring(row.from.indexOf('_')+1);
    row.to=row.to.substring(row.to.indexOf('_')+1);
});
result=network;
Editor is loading...
Leave a Comment