Skip to content

Instantly share code, notes, and snippets.

@erwan
Last active August 29, 2015 14:07
Show Gist options
  • Save erwan/2542ea501c2f950c597e to your computer and use it in GitHub Desktop.
Save erwan/2542ea501c2f950c597e to your computer and use it in GitHub Desktop.
# Number predicates
gt = predicates.gt("my.product.price", 10)
lt = predicates.lt("my.product.price", 20)
in_range = predicates.in_range("my.product.price", 10, 20)
# Accessing number fields
price = doc.get_number("product.price").value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment