apoc.path

Qualified Name Type

apoc.path.expand(startNode Any, relFilter String, labelFilter String, minDepth Integer, maxDepth Integer) - returns paths expanded from the start node following the given relationship types from min-depth to max-depth.

Procedure

apoc.path.expandConfig(startNode Any, config Map<String, Any>) - returns paths expanded from the start node the given relationship types from min-depth to max-depth.

Procedure

apoc.path.spanningTree(startNode Any, config Map<String, Any>) - returns spanning tree paths expanded from the start node following the given relationship types to max-depth.

Procedure

apoc.path.subgraphAll(startNode Any, config Map<String, Any>) - returns the sub-graph reachable from the start node following the given relationship types to max-depth.

Procedure

apoc.path.subgraphNodes(startNode Any, config Map<String, Any>) - returns the nodes in the sub-graph reachable from the start node following the given relationship types to max-depth.

Procedure

apoc.path.combine(path1 Path, path2 Path) - combines the two given paths into one path.

Function

apoc.path.create(startNode Node, rels [Rel]) - returns a path from the given start node and a list of relationships.

Function

apoc.path.elements(path Path) - converts the given path into a list of nodes and relationships.

Function

apoc.path.slice(path Path, offset Integer, length Integer) - returns a sub-path of the given length and offset from the given path.

Function