odata-client-php
odata-client-php copied to clipboard
Operator "IN" is not present
trafficstars
GET /service/Products?$filter=Name eq 'Milk' or Name eq 'Cheese' or Name eq 'Donut'
can become
GET /service/Products?$filter=Name in ('Milk', 'Cheese', 'Donut')
https://docs.microsoft.com/en-us/odata/webapi/in-operator
@Axent96, yes with OData 4.01. We'll eventually get there, but right now support OData 4.0.
Closed by a1a5d57