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.

Michael_Herb
Node Link
since ‎03-18-2019
‎06-01-2022

User Statistics

  • 11 Posts
  • 0 Solutions
  • 2 Kudos given
  • 0 Kudos received

User Activity

I started the process of switching over to spring data neo4j rx. Right away, I noticed quite a few hurdles that we will need to overcome. For starters, the missing support of @RelationshipEntity, @StartNode, @EndNode, @Index, @DateLong We use Relati...
Does the Spring repository delete method work like the Cypher detach delete? In other words if I delete an Entity using myEntityRepository.delete(myEntity); will that delete all relationships with myEntity? or do I need to write a @Query MATCH(...) ...
I attempted to implement as follows: Page<NetworkElement> findFirstByOrderByCaptureIdDesc(Pageable pageable); captureId is a column name, ie. member variable of NetworkElement. When I attempt to start the Spring Boot application I get: Caused by: or...
Currently our Spring Boot Neo4J app connects via the values found in application.properties: spring.data.neo4j.uri=bolt://neo4j:7687 spring.data.neo4j.username=neo4j spring.data.neo4j.password=secret However, we would like this app to be able to con...
I have a repository method that returns a list of lists. List<List<RouteRelationship>> findPaths(String a, String z, String rate); When I run my query with the repository method defined as above, I get no data returned. However if I change the meth...
Kudos given to