I am searching inbox messages using MS Graph API. Here is the request
https://graph.microsoft.com/v1.0/me/mailFolders/inbox/messages?$search="attachment:blabla"&$count=true
I have also set the header to "ConsistencyLevel”: “eventual”
After executing the request, I don't see @odata.count in my response. I do see other keys in my response like @odata.context and value
To me it looks like search and count are not working together. correct me if I am wrong?
I am following the documentation from here https://learn.microsoft.com/en-us/graph/api/user-list?view=graph-rest-beta&tabs=http#optional-query-parameters.
Any insights in the right direction is highly appreciated. Thank you