I know you can search for "any number of arrows" using Variable-length pattern matching
So that matches a "line of arrows" if you will, of any length.
But can you match a "grid of arrows" of any size, ie. a 2D grid, possibly even 3D if it can be done for 2D?
A -> B -> C -> ... -> D
| | | |
V V V V
A'-> B'-> C'-> ... -> D'
. . . .
. . . .
. . . .
| | | |
V V V V
A''->B''->C''-> ... ->D''
That is what I mean as a generalization of the 1D case, a 2D grid of any size. Where, for this question, each square in the grid is bounded by exactly 4 arrows or "sides".
If it Cypher doesn't directly support this, then what would be the most optimal way of implementing it using Neo4j's suite of technology?