How to do a range query to match all greater than X?
for an example all that the delay field has a value greater than 3 as in the following example:
{ "range":
{
"delay":
{
"gte": 3,
"lt": infinity
}
}
}