Course: Building Knowledge Graphs with LLMs
Page: https://graphacademy.neo4j.com/courses/llm-knowledge-graph-construction/2-llm-graph-builder/3-explore-graph/
Issue 1: The first 2 Cypher queries on this page return some duplicate results -- they should return DISTINCT
results instead.
Issue 2: The 3rd Cypher query must specify the label for e
, as in: MATCH p = (d)-[*0..3]-(e:__Entity__)
, or else the query does not do what is claimed. (Also, 0..3
should really be ..3
, since a Document
node will never be an __Entity__
node.)