Github user dkuppitz commented on the issue:
https://github.com/apache/tinkerpop/pull/574
I'm going to add a different example. Starting with an empty graph:
```
g = TinkerGraph.open().traversal()
g.addV().property(id, "A").as("a").
addV().property(id, "B").as("b").
addV().property(id, "C").as("c").
addV().property(id, "D").as("d").
addE("link").from("a").to("b").
addE("link").from("b").to("c").
addE("link").from("c").to("d").iterate()
g.V("A").repeat(both().simplePath()).times(3).path()
g.V("D").repeat(both().simplePath()).times(3).path()
g.V("A").as("a").
repeat(both().simplePath().from("a")).times(3).as("b").
repeat(both().simplePath().from("b")).times(3).
path()
````
Why not the playlist example? Because I haven't found a playlist that had
in fact duplicates in the second path.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---