MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / add_existing_node

Function add_existing_node

graphify/extract.py:14836–14843  ·  view source on GitHub ↗
(node: dict | None)

Source from the content-addressed store, hash-verified

14834 })
14835
14836 def add_existing_node(node: dict | None) -> None:
14837 if not node:
14838 return
14839 nid = node.get("id")
14840 if not nid or nid in seen_ids:
14841 return
14842 seen_ids.add(nid)
14843 nodes.append(dict(node))
14844
14845 def add_edge(
14846 src_nid: str,

Callers 1

extract_xamlFunction · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected