MCPcopy Index your code
hub / github.com/github/awesome-copilot / get_node

Function get_node

skills/mini-context-graph/scripts/tools/graph_store.py:153–156  ·  view source on GitHub ↗

Fetch a single node by ID.

(node_id: str)

Source from the content-addressed store, hash-verified

151
152
153def get_node(node_id: str) -> dict | None:
154 """Fetch a single node by ID."""
155 graph = _load()
156 return graph["nodes"].get(node_id)
157
158
159def get_subgraph(node_ids: list[str]) -> dict:

Callers

nothing calls this directly

Calls 1

_loadFunction · 0.70

Tested by

no test coverage detected