MCPcopy
hub / github.com/tirth8205/code-review-graph / get_all_files

Method get_all_files

code_review_graph/graph.py:559–563  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

557 return resolved
558
559 def get_all_files(self) -> list[str]:
560 rows = self._conn.execute(
561 "SELECT DISTINCT file_path FROM nodes WHERE kind = 'File'"
562 ).fetchall()
563 return [r["file_path"] for r in rows]
564
565 def search_nodes(self, query: str, limit: int = 20) -> list[GraphNode]:
566 """Keyword search across node names.

Callers 6

full_buildFunction · 0.80
export_graph_dataFunction · 0.80
enrich_jedi_callsFunction · 0.80
embed_all_nodesFunction · 0.80

Calls

no outgoing calls

Tested by 1