slipsoft / slipdb

Distributed index based search engine.
4 stars 0 forks source link

Operators `In` and `between` #33

Open n-peugnet opened 5 years ago

n-peugnet commented 5 years ago

In this case ce filter object would accept an Array as the value. Ex:

{
    "field": "name",
    "operator": "in",
    "value": ["nicolas", "etienne", "sylvain"]
}
{
    "field": "age",
    "operator": "between",
    "value": [20, 25]
}