I would like to get the items whose field A is IN (X,Y,Z...).
I've seen ways to do it with ORs (Rest API - $filter multiple values) but is there a simpler way?
Something like:
/_api/web/lists/getbytitle('Students')/items?$select=Title,ZIP&$filter=(ZIP IN [111,222,333,444])
Thanks!