gt
Given some object, return true or false, for values that are greater than the specified integer.
Synopsis
gt(integer\_value)
Description
The gt()
predicate answers the question: Is the incoming number greater than the provided number?
Examples
Find all recipes reviewed with a rating of greater than 3 stars:
g.E().hasLabel('reviewed').has('stars', gt(3)).valueMap()