-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.4.8
-
Component/s: javascript
-
Labels:None
traversal
g.V().hasLabel("person").has("name", TextP.containing("jo"))
is improperly translated to
g.V().hasLabel("person").has("name", containing(jo))
Instead it should be:
g.V().hasLabel("person").has("name", containing("jo"))