我已经使用neo4j-mazerunner来分析我图表上的strong_connected_components关系。该过程已经结束,现在我在节点上获得了strong_connected_components属性。
我使用以下查询来获取不同节点的节点行:
MATCH (n) WHERE has(n.strongly_connected_components)
RETURN DISTINCT "node" as element, n.strongly_connected_components
AS strongly_connected_components
LIMIT 25 UNION ALL MATCH ()-[r]-()
WHERE has(r.strongly_connected_components)
RETURN DISTINCT "relationship" AS element, r.strongly_connected_components
AS strongly_connected_components LIMIT 25
我不确定如何对图形进行密码查询以可视化生成的集群。
任何帮助都会得到帮助。