Hi @Dipika Das
According to my tests, the mentionsPreview
property is not yet available in V1.0, it only works in beta.
Also, I can't seem to sort mail messages by size
, because I can't find the size
property in the property set.
Refer to the sample snippet:
var result = await graphClient.Me.Messages.GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Filter = "mentionsPreview/isMentioned eq true";
requestConfiguration.Headers.Add("Prefer", "outlook.body-content-type=\"text\"");
});
Debugging:
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.