If I run this code
CALL pagerank.get()
YIELD node, rank;
everything works like a charm. But If I expand the query just a little with sorting it gets stuck.
CALL pagerank.get()
YIELD node, rank
ORDER BY rank DESC;
I don't get any results or errors. What could be the reason for this? Should I add something to my code?