I have used Python script with REST APIs to download and upload files from/to SharePoint till now. It was working fine. However due to certain constrains I need to switch to MS graph APIs to download and upload files. I have observed Graph APIs doesn't download all files from SharePoint. for e.g. SharePoint folder contains 228 files, where as only 200 files are getting download & latest files are not getting download.
How to solve this?
My file download URLs is something like
file_download_url = f"https://graph.microsoft.com/v1.0/sites/{site_id}/drives/{drive_id}/root:/{Sharepointfolder}:/children"
