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.

changecpl
Node Link
since ‎07-20-2021
‎06-01-2022

User Statistics

  • 5 Posts
  • 1 Solutions
  • 2 Kudos given
  • 2 Kudos received

User Activity

We can use patterns to search a subgraph like this: MATCH(a:Person{id:1})-[:Knows*1..]->(b:Person) However, I find it takes too long when the subgraph is large. Therefore I use apoc procedure: MATCH(a:Person{id:1}) CALL apoc.path.subgraphNodes(p,{ ...
stackoverflow.com How to build dependency graphs effectively in neo4j with python? python, neo4j, duplicates, dependency-graph asked by cpl on 10:00AM - 20 Jul 21 UTC ...
Hi, everyone! I am new to neo4j. I use the procedure apoc.path.subgraphNodes to get all the nodes in a subgraph. MATCH (p:Pkg {name: "express", version:'4.17.1'}) CALL apoc.path.subgraphNodes(p, { relationshipFilter: "DependOn", minLevel:1,maxLevel...
Kudos from
Kudos given to