In a neo4j database, I have created 4 node types: A, B, C and D each one with 1500 nodes.
For each node a in A and d in D, I want to find the tuples (a, d, count) where count is the number of paths of type A->B->C->D that connect nodes a and d.
The n...