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.

Path expand and Virtual relationships

Hi,

I'm looking for a way to use apoc.create.vRelationship on apoc.path.subgraphAll results.

For example, lets take the same data from documentation about subgraphAll:
The following returns the subgraph reachable by the KNOWS relationship at 1 to 2 hops from Praveena.

MATCH (p:Person {name: "Praveena"})
CALL apoc.path.subgraphAll(p, {
    relationshipFilter: "KNOWS",
    minLevel: 1,
    maxLevel: 2
})
YIELD nodes, relationships
RETURN nodes, relationships;

2X_2_238337962195d3244b63e9249519d415e676dd4d.png

If from some reason Zhen had several relationships to Martin and I wanted to aggregate them into one using apoc.create.vRelationship, how can I specify the "from node" and "to node" parameters for the function from the "YIELD nodes, relationships"?

And more generally, for any given result from apoc.path.subgraphAll, how can I use vRelationship function to aggregate relationships for specified source and target node labels?

Thanks.

Using

  • Neo4j 3.5
  • APOC 3.5.0.11
1 REPLY 1

I know it has been three years since this post. But have you figured out a way to approach this? I have similar question on it as well.