I can't get Inbox messages to return when querying for "me/messages" via the C# nuget client but I can get messages from other folders.
client.Me.Messages.Request().Filter("createdDateTime gt 2017-08-01T15:50:36.00Z").OrderBy("createdDateTime").Expand("attachments").GetAsync()
For some reason this returns only messages from the "Sent Items", "Deleted Items" and "Conversations" folders. But I don't get anything from the Inbox folder.
What's weird is that I can query for the list of folders and expand Messages for each folder and there are messages appearing for the Inbox.
IUserMailFoldersCollectionPage foldersPage = await client.Me.MailFolders.Request().Expand("messages").GetAsync();
So how come the messages appear on the folder object for the Inbox but not when I query "me/messages"?