Microsoft Graph Filter共享OneDrive文件

时间:2016-11-08 04:22:18

标签: rest onedrive microsoft-graph

根据图filtering docs,我一直在尝试实施以下调用。我认为我的语法可能已关闭,因为没有应用过滤器:(,任何建议人员?

尝试使用具有显示名称的复杂实体类型,例如“John Doe”。

SELECT PRODUCT_BK, Month, State, Forecast
FROM
(SELECT * FROM Forecast_Table) t
UNPIVOT
(Forecast FOR State IN (SA_NT, QLD, VIC_TAS, WA, NSW_ACT)) AS fcst

1 个答案:

答案 0 :(得分:1)

SharedWithMe不是资源。这是一个函数,我认为你不能对函数的结果应用过滤器(我对这个答案的信心大约是60%)。

<Function Name="sharedWithMe" IsBound="true">
    <Parameter Name="bindingParameter" Type="microsoft.graph.drive" Nullable="false"/>
    <ReturnType Type="Collection(microsoft.graph.driveItem)" Nullable="false"/>
</Function>

您需要执行客户端过滤。