I have below queries. Even though log says 'Finished', Neo4j browser stucks at loading and doesn't show the results. CALL gds.labelPropagation.stream( 'entityGraph', {concurrency: 4} ) YIELD nodeId, communityId RETURN nodeId, communityId CALL gds...
Hi,I'm Cuneyt and recently moved my app 'Knowledge Base' to Neo4j. I created a Wikimedia Project Proposal for it here : https://meta.wikimedia.org/wiki/KnowledgeBaseHow I use Neo4j is that I imported Wikidata and Dbpedia to Neo4j as they have highly ...
I'm making multiple calls to GDS Dijkstra in one query: Below first call returns a path as path1 and second call returns nothing. When I make these queries together, whole query returns nothing. What might be the reason of that? Must I do separate ca...
I developed a Multi-Threaded Multi Pair Dijkstra algorithm using GDS core api. It takes list of ids as start nodes and target nodes. When I project a graph and call my method and after that I dropped that graph projection and reproject the graph with...
Hi,I started to develop additional algorithms for GDS. You can see them here: https://github.com/cuneyttyler/semanticspace-neo4j-gdsFor now there is only a concurrent version of Dijkstra's Shortest-Path algorithm for multiple source-target pairs. I w...
Hi, thanks for the reply. I actually managed to do a concurrent multiple-pair dijkstra with internal API when I realise that I can't output PATH's with Pregel. See my post here if you're interested : https://community.neo4j.com/t5/neo4j-graph-platfor...
I solved the issue, here is the answer https://community.neo4j.com/t5/neo4j-graph-platform/algorithm-developed-using-gds-core-api-gives-different-results/td-p/56276#M33553