Currently creating a small cloud function that will pull messages in an 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? Anyone have any solutions?
https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/docs/general_samples.md
Example code I am using
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.
William Wood is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.