Skip to content

Commit 8b7ceb4

Browse files
committed
fix(langchain): pass cypher params positionally for injected client compatibility
1 parent 4655747 commit 8b7ceb4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • langchain-coordinode/langchain_coordinode

langchain-coordinode/langchain_coordinode/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def refresh_schema(self) -> None:
159159
# published Docker image (tracked in G010 / GAPS.md).
160160
rows = self._client.cypher(
161161
"MATCH (a)-[r]->(b) RETURN DISTINCT labels(a) AS src_labels, type(r) AS rel, labels(b) AS dst_labels",
162-
params={},
162+
{},
163163
)
164164
if rows:
165165
triples: set[tuple[str, str, str]] = set()

0 commit comments

Comments
 (0)