diff --git a/examples_notebooks/community_contrib/neo4j/graphrag_import_neo4j_cypher.ipynb b/examples_notebooks/community_contrib/neo4j/graphrag_import_neo4j_cypher.ipynb index a8b30a819b..79b076ae5c 100644 --- a/examples_notebooks/community_contrib/neo4j/graphrag_import_neo4j_cypher.ipynb +++ b/examples_notebooks/community_contrib/neo4j/graphrag_import_neo4j_cypher.ipynb @@ -562,7 +562,7 @@ "entity_df = pd.read_parquet(\n", " f\"{GRAPHRAG_FOLDER}/entities.parquet\",\n", " columns=[\n", - " \"name\",\n", + " \"title\",\n", " \"type\",\n", " \"description\",\n", " \"human_readable_id\",\n", @@ -602,7 +602,7 @@ "source": [ "entity_statement = \"\"\"\n", "MERGE (e:__Entity__ {id:value.id})\n", - "SET e += value {.human_readable_id, .description, name:replace(value.name,'\"','')}\n", + "SET e += value {.human_readable_id, .description, title:replace(value.title,'\"','')}\n", "WITH e, value\n", "CALL db.create.setNodeVectorProperty(e, \"description_embedding\", value.description_embedding)\n", "CALL apoc.create.addLabels(e, case when coalesce(value.type,\"\") = \"\" then [] else [apoc.text.upperCamelCase(replace(value.type,'\"',''))] end) yield node\n", @@ -912,7 +912,7 @@ "source": [ "### Importing Community Reports\n", "\n", - "Fo the community reports we create nodes for each communitiy set the id, community, level, title, summary, rank, and rank_explanation and connect them to the entities they are about.\n", + "Fo the community reports we create nodes for each communitiy set the id, community, level, title, summary, rank, and rating_explanation and connect them to the entities they are about.\n", "For the findings we create the findings in context of the communities." ] }, @@ -950,7 +950,7 @@ "