Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
334 B
2
Indexable
Never
// 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;
Leave a Comment