-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Not A Bug
-
Affects Version/s: 3.4.0, 3.4.1
-
Fix Version/s: None
-
Component/s: driver
-
Labels:None
I am using gremlin driver for java (3.4.0 version).
My remote database is Neptune AWS, this version supporte containing operator.
But through the gremlin driver in my java code I am getting an exception for the operator
TextP.containing.
Here are some details
// my gremlin query 1) ok case g.V().hasLabel('toons').repeat(out().simplePath()).until(has('denomination', 'Name', P.eq('Asterix'))) 2 ko case g.V().hasLabel('toons').repeat(out().simplePath()).until(has('denomination', 'Name', TextP.containing('Asterix'))) // Exceptions from Neptune REQUEST_ERROR_INVALID_REQUEST_ARGUMENTS {"code":"InvalidParameterException","detailedMessage":"Invalid OpProcessor requested [null]"} // Exception from Driver java.lang.NullPointerException: null
I found same issue here
https://github.com/JanusGraph/janusgraph/issues/239