MATCH (s)
WHERE ID(s) = 65110
RETURN s
The ID
function gets you the id of a node or relationship. This is different from any property called id
or ID
that you create.
MATCH (s)
WHERE ID(s) = 65110
RETURN s
The ID
function gets you the id of a node or relationship. This is different from any property called id
or ID
that you create.