In my case there are two vertex labels : User, Seller.
Register user create new vertex using custom vertex id :
g.addV(label,'User', 'id', '123456789', 'name', 'User1').next();
When user login and if he register a new business then he become Seller. Now i want same vertex id to be part of Seller label which is not acheivable.
If i create new vertex with seller label then whole graph(hasmobile, hasaddress) stored against user vertex will not be accessible with seller vertex.
Is there way to acheive this in DSE graph ?