-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
Neo4j 5.26
using quickstart.py or from mcp server ingest both showing:
2025-04-14 12:49:05,579 - neo4j.notifications - WARNING - Received notification from DBMS server: {severity: WARNING} {code: Neo.ClientNotification.Statement.UnknownPropertyKeyWarning} {category: UNRECOGNIZED} {title: The provided property key is not in the database} {description: One of the property names in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: content)} {position: line: 4, column: 18, offset: 143} for query: '\n MATCH (e:Episodic) WHERE e.valid_at <= $reference_time \n AND ($group_ids IS NULL) OR e.group_id in $group_ids\n RETURN e.content AS content,\n e.created_at AS created_at,\n e.valid_at AS valid_at,\n e.uuid AS uuid,\n e.group_id AS group_id,\n e.name AS name,\n e.source_description AS source_description,\n e.source AS source\n ORDER BY e.created_at DESC\n LIMIT $num_episodes\n '
After ingestion is done, data in Neo4j, search result is empty.
2025-04-14 21:10:45 - neo4j.notifications - WARNING - Received notification from DBMS server: {severity: WARNING} {code: Neo.ClientNotification.Statement.UnknownPropertyKeyWarning} {category: UNRECOGNIZED} {title: The provided property key is not in the database} {description: One of the property names in your query is not available in the database, make sure you didn't misspell it or that the label is available when you run this statement in your application (the missing property name is: episodes)} {position: line: 16, column: 24, offset: 708} for query: '\n CALL db.index.fulltext.queryRelationships("edge_name_and_fact", $query, {limit: $limit}) \n YIELD relationship AS rel, score\n MATCH (:Entity)-[r:RELATES_TO]->(:Entity)\n WHERE r.group_id IN $group_ids\nWITH r, score, startNode(r) AS n, endNode(r) AS m\n RETURN\n r.uuid AS uuid,\n r.group_id AS group_id,\n n.uuid AS source_node_uuid,\n m.uuid AS target_node_uuid,\n r.created_at AS created_at,\n r.name AS name,\n r.fact AS fact,\n r.fact_embedding AS fact_embedding,\n r.episodes AS episodes,\n r.expired_at AS expired_at,\n r.valid_at AS valid_at,\n r.invalid_at AS invalid_at\n ORDER BY score DESC LIMIT $limit\n '
Search Results:
No results found in the initial search to use as center node.