Hi @Dinesh Raja
You can use the message subject to filter the mailbox to find the target message.
var result = await graphClient.Me.Messages.GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Filter = "subject eq 'xxxxxxxxxxxxxxxxxx'";
});
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.