apoc.nodes

Qualified Name Type Release

apoc.nodes.collapse([nodes…​],[{properties:'overwrite' or 'discard' or 'combine'}]) yield from, rel, to merge nodes onto first in list

Procedure

APOC Core

CALL apoc.nodes.cycles([nodes], $config) - Detect all path cycles from node list

Procedure

APOC Core

apoc.nodes.delete(node|nodes|id|[ids]) - quickly delete all nodes with these ids

Procedure

APOC Core

apoc.nodes.get(node|nodes|id|[ids]) - quickly returns all nodes with these ids

Procedure

APOC Core

Procedure

APOC Core

apoc.nodes.link([nodes],'REL_TYPE', conf) - creates a linked list of nodes from first to last

Procedure

APOC Core

apoc.get.rels(rel|id|[ids]) - quickly returns all relationships with these ids

Procedure

APOC Core

apoc.nodes.connected(start, end, rel-direction-pattern) - returns true when the node is connected to the other node, optimized for dense nodes

Function

APOC Core

apoc.nodes.isDense(node) - returns true if it is a dense node

Function

APOC Core

apoc.nodes.relationship.types(node|nodes|id|[ids], rel-direction-pattern) - returns a list of maps where each one has two fields: node which is the node subject of the analysis and types which is a list of distinct relationship types

Function

APOC Core

apoc.nodes.relationships.exist(node|nodes|id|[ids], rel-direction-pattern) - returns a list of maps where each one has two fields: node which is the node subject of the analysis and exists which is a map with rel-pattern, boolean for the given relationship patterns

Function

APOC Core