Hello Everyone,
I want to apply Closeness centrality algorithm on the graph obtained by the following Cypher query.
WITH [uri1, uri2, uri3] AS StopUris
MATCH(n:label1)-[:abc|pqr|xyz*0..2]->(m)-[:uvw*0..1]-(o)
WHERE n.uri = uri4 and not m.uri IN Sto...