Reputation: 39
I just started with Neo4j and I'm trying some examples datasets but sometimes I can't visualize graph properly.
For example : http://neo4j.com/blog/fun-with-beer-and-graphs/
With the following query, I got the same answer but no graph :
START
duvel=node:node_auto_index(name=”Duvel”),
orval=node:node_auto_index(name=”Orval”)
MATCH p = AllshortestPaths( duvel-[*]-orval )
return p;
It seems that the writer is using a graph viewer, see screenshot https://i.sstatic.net/mOPY9.jpg
Can someone tell me more about this ? What do I need to visualize graph?
Thank you! :)
Upvotes: 0
Views: 60
Reputation: 20185
It is based on oldier versions of Neo4j.
Check :
Your Neo4j version
It is using legacy indexing, so did you added auto_indexing in your neo4j.properties ?
Edit: Referencing your last commend, (I get some problems with my mobile to reply to comments)
You should then uncomment # node_auto_indexing
Upvotes: 1