I’m trying to figure which List Items have attachments through a REST API call and I noticed something strange (not that unusual with REST Calls ;-)).
When I execute the following call all the records except the ones with attachments are brought back :
http:{SiteURL}/_api/web/lists/getbytitle('Facility%20Status%20List')/items?$filter=Attachments eq true&$select=id
and when I execute the “ne” for comparison–only my Items with attachments are brought back.
I hate to use the negative logic–but I guess I have to.