Open nowheremanmail opened 4 years ago
This is an error in the service. I tried the following with a business account.
I can reproduce this issue with the beta endpoint.
Success: https://graph.microsoft.com/beta/me/drive/root/search(q='music')?$top=20
Fail: https://graph.microsoft.com/beta/me/drive/root/microsoft.graph.search(q='music')?$top=20
This works as expected against the v1.0 endpoint.
Success: https://graph.microsoft.com/v1.0/me/drive/root/search(q='music')?$top=20
Success: https://graph.microsoft.com/v1.0/me/drive/root/microsoft.graph.search(q='music')?$top=20
@ificator
@MIchaelMainer Is there any workaround available?
Thank you for reporting this issue. This appears to be an issue or limitation with the service APIs. Unfortunately, as the Microsoft Graph SDK team, we do not have ownership of the APIs that are causing you issues. We invite you to create a question about the service API to Microsoft Q&A and tagged with one of the [microsoft-graph-*] tags, that way it will get routed to the appropriate team for them to triage:
https://aka.ms/msgraphsupport or directly https://aka.ms/askgraph
For now, we will close the issue on our side but feel free to open it in the relevant repository if you think the issue is specific to SDK. Please let us know if this helps!
Note: We will close this repository on April 19, 2024.
Describe the bug on onedrive, Trying to find all files with search criteria, it fails with error
To Reproduce
var search = provider.Graph.Me.Drive.Root.Search("music").Request().Top(20);
Expected behavior should return first page with files
AB#7273