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.
Given our `PersonWithCustomId` from the test suite: When altering the `PersonId` to something like: ``` @Value public static class PersonId { private final Long id; private final String ding; }...
Given ```java @Data @Setter(AccessLevel.PRIVATE) @NoArgsConstructor(access = AccessLevel.PROTECTED) @EqualsAndHashCode(onlyExplicitlyIncluded = true) @SuperBuilder(toBuilder = true) abstract public class BaseNodeEntity { @Id @GeneratedValue(UUIDStringGenerator.class) @EqualsAndHashCode.Include private String nodeId; @Relationship(type = "CHILD_OF", direction = OUTGOING)...
Hello again, In the previous version of spring-data-neo4j we had a possibility to add the ogm-annotations jar as a dependency and therefore create a shared Neo4j entities artifact. In our...
We recently migrated a kotlin application from SDN 5 (with spring-boot 2.3) to SDN 6 (with spring-boot 2.4). There are a couple of topics which would have saved us valuable...
https://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#custom.conversions.composite-properties should we be able to convert any map into an object using the keys as the field names and the values as the values, all the way down? isn't...
Hello! I don't know if it's a bug or if it's wished this way, but I find the issue to be a little problematic. My example requires to return the...
In #2308 the question was raised whether non-domain objects can be serialized in some form as JSON-like map. Several options could be possible: - Depending on Jackson / ObjectMapper and...