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.

raseemmd30
Node Link
since ‎09-04-2020
‎08-26-2022

User Statistics

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

User Activity

I am using two sub queries with CALL statements. There are different matches and conditions applied in each sub query. if first sub query not producing any results then am not getting the result in the second call statement. My syntax is like below...
I am writing one cypher query like below but not getting the results. I want to find the last node in the path and also need one node before that final node. MATCH (startNode) - [: FOLLOW | REVIEW | RECOMMENDED*] - (lastNode) <- [:RECOMMENDED] - (...
I want to convert one gremlin query which is similar to below one. In repeat statement, it will traverse till EndNode with validating each InNode1 in that path with given conditions. If any InNode1 in that path doesnt satisfy then result will be Zer...