I am using AWS Neptune gremlin, I have a vertex with a property stored multiple values
Vertex label 'apple' with property color, e.g. created a 'apple' vertex with property color multiple values ['red', 'white']
g.V().hasLabel('apple').has('color', TextP.notContaining('wh'))
the problem is it still returns this vertex, how can I exclude the V that contains 'wh'?