I am very new to MS Graph API & o365 python library and I am using Graph API & o365 library to fetch various email messages information, Such as email sender name, email received time, email body information, attachment details, etc. • I am facing a latency in the response on given below code partI am attaching the part where Graph API response is slow,
finalConvId = "XXXXXX" # Conversation ID
query = mailbox.new_query().on_attribute('conversation_id').equals(finalConvId)
mailbox.get_messages(limit=100, query=query, batch=20, download_attachments=False)
Would you please help me with this. Thanks in advance for your precious time.