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.

Andrea-Cavallo
Node Link
since ‎10-22-2021
‎10-10-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 8 Kudos given
  • 0 Kudos received

User Activity

Hello, I 'd like to solve this Assume I have something like this. ( please note that Open Doors or Close Doors is only an example ) 2 relatiionship and that my goal is to retrieve the maxId between this 2. match (n)-[r:CLOSE_DOORS]-(m) return max(r....
Hello, Assuming I have Surname Unique ( is an Example... ) @Query("MATCH (n:User:`$surname`) return n ") Flux<UserEntity> customFindAll(@Param("surname") String surname); <- This query doesnt work in spring-data otherwise was too easy of course....
I am trying to find all Relationship of a node - using a Query Like this in neo4j MATCH (a:User)-[r]-(b) RETURN a, collect(r), collect(b) limit 10 But I am getting this Error ,could you please help me?: 2021-11-18T11:37:20.0844+0100 [Neo4jDriverIO...
This was the Query I was looking for : And works good , "UNWIND $createdNodes AS e MATCH(n:User) with e, MAX(n.ID) as maxId Set e.ID = maxId + 1" But the fact that I have to make a MATCH again in order to retrieve the USER with the new ID increme...
Hello guys, which is the correct APOC procedure to Trigger an ID and (Increment it +1) every time I call a create? Assuming User has an ID - my idea is to increment using ID and not UUID, I know maybe is not performant but I have to. The perfect thi...
Kudos given to