testing data:
vertex A has property 'a' value '1'
vertex B has outEdge 'e' to A
vertex B had property 'b' value '2'
how do I update 'a' to be value from 'b' in this case '2'?
I have tried this but not working
g.V().hasLabel('A').property('a', inE('e').outV().project('b').by('b').unfold())