spring-data-neo4j
spring-data-neo4j copied to clipboard
Provide support to increase developer productivity in Java when using Neo4j. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
I have an issue where I have defined some @Node with interfaces so that I can fetch a group of Nodes which are unrelated in terms of inheritance. Because of...
SDN is somehow changing behaviour during runtime. I've been struggeling with performance problems for quite some time, but thought it was a bad design of my multilevel projections, causing SDN...
When defining RelationshipProperties we have to add an Long id field in order to keep track of that relationship. So far so good. With the changes in SDN UUIDs etc....
I'd like to ask you a quick question that I wasn't able to figure out myself after days of googling and reading the SDN reference. We have a class and...
currently the `neo4jTemplate.save` method saves the whole sub graph provided. This makes it hard to just create or update a single node which has relations to other nodes. **Request:** Adding...
I have an issue with ReactiveNeo4jTemplate and the findAll method using a Statement. All the template methods work except this one, which returns an empty result even though the database...
We are using: spring-data-neo4j 6.3.5 neo4j 4.3.10 As described in the [reference doc](https://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#query-creation.save), saving relationships for multiple entities tends to generate and run several queries. It goes something like: 1....
Is it possible to know in SDN 6 what operation triggered BeforeBindCallback? I'd like to implement auditing feature like it's done in this guide but they use JPA (https://www.baeldung.com/database-auditing-jpa). I...