如何在Microsoft Graph上的扩展集合内进行过滤和选择?

Xza*_*zaR 5 api restful-url odata onedrive microsoft-graph

此代码有效

https://graph.microsoft.com:443/v1.0/me/drive/root?$filter=Size eq 0&$expand=children($select=id,folder,name,parentReference,cwebUrl)&$select=Id,folder,name,parentReference,children,webUrl
Run Code Online (Sandbox Code Playgroud)

我想在孩子里面过滤:

https://graph.microsoft.com:443/v1.0/me/drive/root?$filter=Size eq 0&$expand=children($select=id,folder,name,parentReference,cwebUrl&$filter=Size eq 0)&$select=Id,folder,name,parentReference,children,webUrl
Run Code Online (Sandbox Code Playgroud)