I have created a graph based on commit history of a source code control tool. The basic graph is
(c:Commit)-[:PARENT]->(p:Commit)
in which every commit except the first references one or more parent commits. The commit is indexed on its URI.
I'm look...