Hello,
Here are the requested ids
https://graph.microsoft.com/v1.0/me/messages?%24filter=createdDateTime%20ge%202021-01-25T12%3A00%3A33Z%20and%20createdDateTime%20lt%202021-01-26T00%3A00%3A33Z%20and%20isDraft%20eq%20false
request-id: 3cdaf791-28d4-4c8c-b25a-181daa553950
client-request-id: 3cdaf791-28d4-4c8c-b25a-181daa553950
https://graph.microsoft.com/v1.0/me/messages?$filter=createdDateTime+ge+2021-01-25T12:00:33Z+and+createdDateTime+lt+2021-01-26T00:00:33Z+and+isDraft+eq+false&$top=1&$skip=7&$select=createdDateTime
request-id: 0b1f7649-a9e6-4522-bf98-4cbb135233c3
client-request-id: 0b1f7649-a9e6-4522-bf98-4cbb135233c3
I think it's a timeout or something like that.
By adding the top and skip parameters, it seems that the query is full executed and only the requested results are returned.
By decreasing the range we have a response, for eXample :
https://graph.microsoft.com/v1.0/me/messages?$filter=createdDateTime+ge+2021-01-25T12:30:33Z+and+createdDateTime+lt+2021-01-25T13:00:33Z+and+isDraft+eq+false&
Regards