Graph Algorithms¶
Uni includes a built-in graph algorithm library exposed through Cypher procedures. Use it to compute centrality, clustering, paths, and connectivity without exporting data.
What It Provides¶
- Centrality: PageRank, betweenness, closeness, eigenvector, Katz.
- Connectivity: WCC, SCC, bridges, articulation points.
- Paths: shortest paths, k-shortest, A*, BFS/DFS.
- Community detection: Louvain, label propagation.
Example¶
Use Cases¶
- Identify important nodes in a graph.
- Detect communities and clusters.
- Compute routing or similarity metrics.
When To Use¶
Use built-in algorithms when you need graph analytics without exporting data or building your own pipeline.