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
Solution:
i'd say this is the bug:
gremlin> g.V(1,1).count()
==>2
gremlin> g.V(1,1).count()
==>2
i wonder when that got introduced..........
Jump to solution
1 Reply
Solution
spmallette
spmallette2w ago
i'd say this is the bug:
gremlin> g.V(1,1).count()
==>2
gremlin> g.V(1,1).count()
==>2
i wonder when that got introduced.......

Did you find this page helpful?