I have two filters to filter on ,one is status and other is category.
- status is : new/approve/rejected and blank
if status is new then show new records , if approve then approved, if set blank then show all but rejected
- category can be blank or something if no category is set (means) blank then it should all the records ,if set then only those records.
i have written following query but iam not getting how to set for blank values which can display all records regardless of category set.
https://mysiteoffice365.sharepoint.com/_api//web/Lists/GetByTitle('listName')/items?$select=id,Title,category,status&$filter=((status eq 'new') and (category eq ''))
andoror?