eq
Given some object, return true or false, for equality.
Synopsis
eq(object)
Description
The eq()
predicate answers the question: Is the incoming object equal to the provided object?
Examples
Find which recipes are main entrees:
g.V().hasLabel('recipe').has('cuisine', eq('main entree')).values('name')