The database has nodes which form a tree. Each node follows another with the predicate "precedes". I want to write a query that can read the entire tree given the start node.
I have tried Morphism, but the output makes no sense to me at all. Perhaps because of my lack of understand on what "Morphism" actually means ...
Any hints, or links to actual good examples would be appreciated
In Neo4j you should do something like this:
Note that the
*
specified after the relationship type will do a full search in the entire graph. It can cause memory issues.