I tried to run the following command in Neo4j however it gives the error Unknown function 'algo.getNodeById'. I am using Neo4j desktop (3.4.0) and I am running this command in Neo4j browser:
CALL algo.unionFind.stream('', ':REL', {})
YIELD nodeId,setId
RETURN algo.getNodeById(nodeId).id AS user, setId
I want to find connected components (top10 maximum connected) in my graph. Any other solution which can help me visualize the connected component in the graph will also work