With Cypher, I\'m trying to return the node of the highest score. However it either just returns the score without any id to the node, what do I need to add to
Cypher
This solution should give you both the score and node.
start n=node(*) WHERE HAS(n.score) RETURN n, n.score ORDER BY n.score LIMIT 1