Skip to content

Commit

Permalink
Dynamic cypher generation
Browse files Browse the repository at this point in the history
  • Loading branch information
jexp committed Nov 27, 2024
1 parent 4e618d3 commit 9ffc8ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RETURN m.title, m.year
```

```cypher
// Which which movies were released between $startYear and $endYear
// Which movies were released between $startYear and $endYear
MATCH (m:Movie)
WHERE $startYear <= m.year <= $endYear
RETURN m.title, m.year
Expand All @@ -60,7 +60,7 @@ RETURN m.title, m.year
## Further reading

- [Build a Knowledge Graph-based Agent With Llama 3.1, NVIDIA NIM, and LangChain](https://medium.com/neo4j/build-a-knowledge-graph-based-agent-with-llama-3-1-nvidia-nim-and-langchain-feb65788e637) (Tomaz Bratanic, August 2024)
* [GraphRAG in Action: From Commercial Contracts to a Dynamic Q&A Agent](https://towardsdatascience.com/graphrag-in-action-from-commercial-contracts-to-a-dynamic-q-a-agent-7d4a6caa6eb5)
* [GraphRAG in Action: From Commercial Contracts to a Dynamic Q&A Agent](https://towardsdatascience.com/graphrag-in-action-from-commercial-contracts-to-a-dynamic-q-a-agent-7d4a6caa6eb5) (Ed Sandoval, Oct 2024)

## Existing Implementations

Expand Down

0 comments on commit 9ffc8ed

Please sign in to comment.