Hi @Ayase Morita
It seems that there is no support for using the API to directly get all files whose "mimetype" is "application/octet-stream". I suggest you use the Graph SDK locally to get the file set first and then filter the file set based on the file property.
var files = await graphClient.Drives["{drive_id}"].Items["Root"].Children.GetAsync();
foreach (var file in files.Value)
{
if (file.File != null && file.File.MimeType == "application/octet-stream")
{
Console.WriteLine(file);
}
}
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.