Currently creating a small cloud function that will pull messages in from an outlook inbox using the microsftgraph sdk for python. I am trying to make it so the app will pull as many messages as possible in the first request, and the way to do this seems to be by adding a 'top' query parameter and setting it to 1000 - the max. However the examples provided to achieve this seem to use a function which does not exist - MessagesRequestBuilderGetRequestConfiguration. Does anyone have any solutions or have I missed something? https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/docs/general_samples.md
The file where the function should be: https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/msgraph/generated/users/item/messages/messages_request_builder.py
I have not tried anything yet, I am aware I can probably just send the request myself rather than using the client library but would ideally like a way to get it working.