g.V().has(id,'xxx').repeat(outE('x').
has('b',gte(1588919200)).has('b',lte(1589128800)).inV())
.times(2).emit().property('a',b)
Edge has a property 'b' and vertex has a property 'a'.
For vertices satisfying certain conditions i want to copy edge's 'b' property value as vertex's 'a' property value.
And this has to be done for all vertices connected by 'x' edge upto 2 levels.