I have two vertices with Label='Node'. Both vertices has name and value properties. One vertex value is numeric and other vertex value is string.
I want to search all vertices with value as "something". Since one of the vertices is numeric, it is not allowing me to compare against numeric property.
Is there a way to type cast numeric property value to string?
Here is the example:
Vertex#1: addV('Node').property('name','col1').property('value',123)
Vertex#2: addV('Node').property('name','col2').property('value',"ABC")
I want to find all vertices with Label "Node" where value can be any given string ("123" or "ABC")