Hi @N&H / Kaba
The endswith
filter on the "subject" property is not yet supported. As an alternative, you can try the $search
query parameter.
var result = await graphClient.Users["{user_id}"].MailFolders["{folder_id}"].Messages.GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Search = "\"subject:Digest\"";
});
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.