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:
It was there since the beginning, but I have no exact idea why we / I did this anymore.
I think it was because we wanted to persist the document as it comes in . But if it makes trouble, I have no problem in removing those lines and compress it.
Maybe I am using it wrongly, but what I normally do is I create records in a db, with some text I want to embed, and if I want to use that record later, all its properties will be removed, unless I set them in the metadata, which seems clunky, but again, maybe I am missing something
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: