You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of this line, when an existing node is added to the vector store, its existing properties are deleted, and only those added as document metadata are persisted.
This is needlessly destructive. I suggest to change line 125 to SET u = properties(u) so that existing properties are preserved
The text was updated successfully, but these errors were encountered:
spring-ai/vector-stores/spring-ai-neo4j-store/src/main/java/org/springframework/ai/vectorstore/Neo4jVectorStore.java
Line 125 in 9e18652
Because of this line, when an existing node is added to the vector store, its existing properties are deleted, and only those added as document metadata are persisted.
This is needlessly destructive. I suggest to change line 125 to
SET u = properties(u)
so that existing properties are preservedThe text was updated successfully, but these errors were encountered: