Graph computer question
In some cases TinkerGraphComputer removes duplicates from input, is this a bug or a feature?
For example
gremlin> g.V(1,1).count()
==>2
gremlin> g.withComputer().V(1,1).count()
==>1
For example
gremlin> g.V(1,1).count()
==>2
gremlin> g.withComputer().V(1,1).count()
==>1