g.V().has('ECCKT',textContains('101 /GE /BNT/LTR'))
.repeat(__.in().has('~label', 'Circu_Vrtx')).until(__.in().has('~label', 'Circu_Vrtx')
.count().is(0)).simplePath().dedup().order().as('a')
.V().has('ECCKT',textContains('102 /GE /LTR/LTR'))
.repeat(__.in().has('~label', 'Circu_Vrtx')).until(__.in().has('~label', 'Circu_Vrtx')
.count().is(0)).simplePath().dedup().order().as('b')
.select('a','b').by(id).by(id).where('a',eq('b'))
.back('a').addOutE('ECCKT', 'b')
"mid-traversal V()" b table and .select('a','b').by(id).by(id). gives me values for table a and table b.
But where('a',eq('b')) doesn't give me any match from a and b? Any idea what can be wrong
