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.

damienthewave
Node Link
since ‎11-02-2021
‎06-01-2022

User Statistics

  • 12 Posts
  • 1 Solutions
  • 4 Kudos given
  • 0 Kudos received

User Activity

Hi, I'm working on a query to find probable siblings of a person in a family tree. MATCH (p: Person) WHERE id(p) = 892 OPTIONAL MATCH (p)-[:IS_CHILD_OF]->()<-[:IS_CHILD_OF]-(prop) OPTIONAL MATCH (p)-[:IS_SIBLING_OF]-(actualSibling)-[:IS_SIBLING_OF*...
Hi, in SDN6 Repository, I was trying to write parametrized queries like the one below: @Query("MATCH (person: Person)-[:IS_CHILD_OF*\$degree]->(relative: Person) " + "WHERE id(person) = \$personId " + "RETURN relative") fun getRelativesByDegre...
Hi, I have a small inheritance problem in Spring Data Neo4j 6.1.4. Notification is an abstract class and RequestNotification is one of the supertypes. interface NotificationRepository : Neo4jRepository<Notification, Long> { fun findByNotificationI...
Hi, yesterday I ran into a problem while creating an account in the application I'm currently developing. The console log says: org.springframework.data.mapping.MappingException: The node with id 5 has a logical cyclic mapping dependency. Its creatio...
Hi, I am stuck on a problem where inside spring security's AuthenticationManager's method authenticate() there's an exception being thrown. .n.c.Neo4jPersistenceExceptionTranslator : Don't know how to translate exception of type class org.neo4j.driv...
Kudos given to