Using python
, bulbs
, and rexster
Say I have two vertices, v0
and v1
. And I create 3 outgoing edges from v0 -to-> v1
. Currently in bulbs
, list(v0.outV())
gives me a 3 element list, all of v1
. Is there a way to get the unique list of v0.outV()
in bulbs
or gremlin
?
Note: set(list(v0.outV()))
doesn't work, and I prefer not to remove duplicates in python
, but rather on the graph server, rexster
side
Edit: I'm using rexster
with orientDB
, and orientDB
is blueprint
compatible.