
I built a PowerApp that fetch's emails from a inbox folder, but after seeing that it only returned the first 20 responses. I tried a searchFilter on the GetEmailsV3 Step and I can't get it to work. Everything I try comes back with "the GetEmailsV3 Step has errors"
First i built a textbox and named it SearchBox, in hopes of allowing the users to search for the users email address that the message was sent to. So i used the query like this - Office365Outlook.GetEmails({folderPath:"Inbox/Folder_Name",IncludeAttachments:true, searchFilter:SearchBox.Text}) , but that didn't work. So then I tried Office365Outlook.GetEmails({folderPath:"Inbox/Folder_Name",IncludeAttachments:true, searchFilter:'to:email_address@domain.org'}) and it still didn't work
Has anyone run into this? I did read the documentation that MS Provided for this, but its a little confusing with no examples of how the searchFilter is supposed to be used in PowerApps, just in the Graph API
I also need to know. The documentation regarding the Office365Outlook.GetEmailsV3 is just lame and vague.