MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / column

Method column

bindings/python/graphlite/graphlite.py:98–100  ·  view source on GitHub ↗

Get all values from a specific column

(self, name: str)

Source from the content-addressed store, hash-verified

96 return self.rows[0] if self.rows else None
97
98 def column(self, name: str) -> List[Any]:
99 """Get all values from a specific column"""
100 return [row.get(name) for row in self.rows]
101
102
103def _find_library() -> str:

Callers 2

runExampleMethod · 0.95
mainFunction · 0.45

Calls 1

getMethod · 0.45

Tested by

no test coverage detected