lte
Given some object, return true or false, for values that are less than or equal to the specified integer.
Synopsis
lte(integer\_value)
Description
The lte()
predicate answers the question: Is the incoming number less than or equal to the provided number?
Examples
Find all meal items with less than or equal to 1230 calories:
g.V().has('meal_item', 'calories', lte(1230)).valueMap('name', 'calories')