cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

mick
Node
since ‎12-15-2021
‎11-27-2022

User Statistics

  • 16 Posts
  • 0 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

@Node public class User { @Id @GeneratedValue(generatorClass = UUIDStringGenerator.class) private String id; private String username; } @RelationshipProperties public class Member { @RelationshipId private Long id; @Targ...
@Node public class User { @Id private String id; private String username; @Relationship("ACTIVE_BUSINESS_UNIT") private BusinessUnit activeBusinessUnit; } @Node public class BusinessUnit { @Id private String id; priv...
Is it possible to save Interface based Projections? Can't see anything in the documentation saying you can't, but getting the following error when I try: org.springframework.data.mapping.MappingException: Constructor parameter names aren't available,...
Upgraded to Spring Boot 2.3 (from 2.2) and app won't startup due to dependency cycle Any idea why Neo4jOgmEntityInstantiatorConfigurationBean dependant on WebMvcAutoConfiguration$EnableWebMvcConfiguration?
Have used a NodeEntity interface for loading nodes using a custom findBy repository method and this is working fine with Spring Boot 2.1, Have just tried using Boot 2.2 (and 2.3) and it now fails with: Caused by: org.springframework.data.mapping.con...
Kudos given to