根據圖filtering docs,我一直在嘗試執行以下調用。我想我的語法是關閉,因爲沒有被應用濾鏡:(,任何人的建議?Microsoft Graph Filter共享OneDrive文件
試圖用像「李四」的顯示名稱中使用複雜的實體類型。
https://graph.microsoft.com/v1.0/me/drive/sharedWithMe?$filter=remoteItem/createdBy/user/displayName eq '{DISPLAY_NAME}'
根據圖filtering docs,我一直在嘗試執行以下調用。我想我的語法是關閉,因爲沒有被應用濾鏡:(,任何人的建議?Microsoft Graph Filter共享OneDrive文件
試圖用像「李四」的顯示名稱中使用複雜的實體類型。
https://graph.microsoft.com/v1.0/me/drive/sharedWithMe?$filter=remoteItem/createdBy/user/displayName eq '{DISPLAY_NAME}'
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>
你需要執行客戶端過濾。
你可以在集合上應用過濾器,比如'Collection(microsoft.graph.driveItem)'嗎? –
也有計劃在未來對函數返回應用過濾器的支持嗎? –
對此的更好的過濾支持處於積壓狀態。如果您認爲這很重要,請考慮將其添加到我們的[UserVoice頁面](https://onedrive.uservoice.com/forums/262982-onedrive/category/89523-developer)。 –
你能提供迴應訊息嗎? –
我無法提供尺寸。響應消息與我剛使用'https:// graph.microsoft.com/v1.0/me/drive/sharedWithMe'時不包含過濾器相同。 –