Hi Emil,
Traverse was implemented this way to avoid infinite loops, but now we know
it's a limitation and we are thinking about a finer strategy, where the
user can define (per single query) how traversed nodes have to be
considered:
- skip traversed nodes globally
- skip traversed nodes in curren
Hello All
I am traversing a Graph that has some common Vertices. When I execute
traverse, I only see one instance of the common Vertix versus several.
For example,
A -> B
C -> B
After traverse, I only see the following result:
A
C
B (common and pointed to by A and C)
I would like to see the du