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.

amit-suryavansh
Node Link
since ‎09-07-2018
‎01-16-2023

User Statistics

  • 9 Posts
  • 1 Solutions
  • 7 Kudos given
  • 0 Kudos received

User Activity

Following cypher does not work, Can anyone please throw some light? thanks. MATCH (u:`user`) WHERE ID(u)=111 MATCH (u)<-[:`manager`]-(`subordinates`)-[:`manager`]->(`subordinates.manager`) RETURN `subordinates.manager` this does not retu...
Hi There, Anyone has idea around where or when the videos from nodes 21 conf will be available? Thanks.
Need little help with Cypher. My Cypher is, MATCH p=(user)-[r1:roles]->(role1:`Role`)-[:include*1..]->(role2:`Role`) RETURN collect(tail(relationships(p))), collect(role2) For a path where include relation is more than 1 level deep, it gives all inc...
Full stack developer, predominantly working on Ruby and Rails. Working on neo4j for some time now. Assisting in maintaining ruby's neo4j database adapter at https://github.com/neo4jrb/. Have build a ruby authentication library cancancan adapter for n...
MATCH p=(user)-[r1:roles]->(role1:`Role`)-[:include*0..]->(role2:`Role`) I need to get only relationships with type include from the cypher above. Thanks.