We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SELECT * FROM cypher('graph', $$ MATCH ()-[e]->() RETURN collect(distinct label(e)) as labels $$) as (e agtype);
No response
https://github.com/langchain-ai/langchain/blob/master/libs/community/langchain_community/graphs/age_graph.py Line 158 contains wrong MATCH statement definition. It should be with a right arrow: MATCH ()-[e]->() RETURN collect(distinct label(e)) as labels
A Docker container with the latest version of langchain.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checked other resources
Example Code
SELECT *
FROM cypher('graph', $$
MATCH ()-[e]->() RETURN collect(distinct label(e)) as labels
$$) as (e agtype);
Error Message and Stack Trace (if applicable)
No response
Description
https://github.com/langchain-ai/langchain/blob/master/libs/community/langchain_community/graphs/age_graph.py
Line 158 contains wrong MATCH statement definition.
It should be with a right arrow:
MATCH ()-[e]->() RETURN collect(distinct label(e)) as labels
System Info
A Docker container with the latest version of langchain.
The text was updated successfully, but these errors were encountered: