此代码有效
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
我想在孩子们内部过滤:
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
答案 0 :(得分:5)
在展开中过滤/选择时,您需要使用;
作为分隔符,而不是&
。所以你的网址应该是:
以下是TripPin示例OData服务上的URL示例,以显示此操作: