Filtering
Filter | Description |
---|---|
No suffix or eq | Equal |
ne | Not equal |
lt | Less than |
gt | Greater than |
lte | Less than or equal to |
gte | Greater than or equal to |
in | Included in an array |
nin | Not included in an array |
contains | Contains |
ncontains | Doesn't contain |
containss | Contains, case sensitive |
ncontainss | Doesn't contain, case sensitive |
null | Is null or not null |
1.
GET /orders?customer_first_name=John
2.
3
and brand is Apple
GET /products?soh_gt=3&brand=Apple
3.
Apple
or Nike
or Samsung
GET /products?brand_in=Apple&brand_in=Nike&brand_in=Samsung
3.
GET /products?catalogue.id = 3