如何在Microsoft Graph的扩展集合中进行筛选和选择?

15

这段代码有效

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
1个回答

15

1
无法在 Microsoft Graph 上运行...例如:https://graph.microsoft.com/v1.0/users?$expand=memberOf($select=id,displayName;$filter=displayName eq 'Legal')&$select=Id,memberOf 无法过滤仅包含“Legal”组或用户的内容。 - BBacon

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接