hasNot
Filter based on a particular label or value not present.
The hasNot()
step is a filter step.
This step narrows the query to find particular vertices or edges without a certain property key.
Synopsis
hasNot( 'propertyKey\_name' )
Examples
Find the meal item that does not have a property key name:
g.V().hasLabel('meal_item').properties().hasNot('name').value()