Lets say I have the following Gremlin graph:
g.addV('test1').property('pkey', 100).property('v1', 100).property('v2', 150)
g.addV('test1').property('pkey', 100).property('v1', 100).property('v2', 75)
I want to query for all of the 'test1' labeled vertices where the property value v1 is greater than the property value v2. How do I achieve this in Gremlin?