私は、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
生成されたクラスターを視覚化するためにグラフを暗号クエリする方法がわかりません。
どんな助けでも感謝されます。