apoc.node

Qualified Name Type

apoc.node.degree(node Node, relTypes String) - returns the total degrees for the given node.

Function

apoc.node.degree.in(node Node, relTypes String) - returns the total number of incoming relationships to the given node.

Function

apoc.node.degree.out(node Node, relTypes String) - returns the total number of outgoing relationships from the given node.

Function

apoc.node.id(node Node) - returns the id for the given virtual node.

Function

apoc.node.label(node Node) - returns the labels for the given virtual node.

Function

apoc.node.relationship.exists(node Node, relTypes String) - returns a boolean based on whether the given node has a relationship (or whether the given node has a relationship of the given type and direction).

Function

apoc.node.relationship.types(node Node, relTypes String) - returns a list of distinct relationship types for the given node.

Function

apoc.node.relationships.exist(node Node, relTypes String) - returns a boolean based on whether the given node has relationships (or whether the given nodes has relationships of the given type and direction).

Function