13,728 questions
For this kind of search, you should use the search API. Here is a example to search your files.
POST https://graph.microsoft.com/v1.0/search/query
{
"requests": [
{
"entityTypes": [
"driveItem"
],
"query": {
"queryString": ".mp3 OR .wav OR .m4a"
}
}
]
}