The Office 365 Graph API documentation suggests that $filter and $top operations should be supported when used together on a delta query...
However, when executing a query that uses both $filter and $top such as this:
https://graph.microsoft.com/beta/me/mailfolders/AAMkADQ3MDg1NWRmLTUxMGQtNDRiMi1iMGE4LTAzMzdjNGRiYTIxNQAuAAAAAADEPuholyn_QpUTcq2qMEH4AQBScDrPb_rMTZOocc5vRCTLAAAAAAEMAAA=/messages/delta?$filter=receivedDateTime%20ge%202017-04-01T00:00:00Z&$top=1000
We find that the $top value is not applied and the default value of 10 results per page is used. However the $filter has been applied correctly.
When testing without the $filter statement, we find the $top value is applied as expected.
Is this a bug in the Graph API or am I misunderstanding something? Thanks in advance.