有没有办法在Microsoft Graph API的一个请求中递归地包含子项(孙子项)的内容?
我想查询文件夹/foo/
并获取/foo/baar/
例如的内容/foo/baar/baz.txt
。
IGraphServiceClient graphClient = GraphServiceClient
.builder()
.authenticationProvider(authProvider)
.buildClient();
IDriveItemCollectionPage children = graphClient
.drives("{drive-id}")
.items("{item-id}")
.children()
.buildRequest()
.expand("children")
.get();
使用扩展查询children
返回一个com.microsoft.graph.http.GraphFatalServiceException: Unexpected exception returned from the service.Error code: notSupported
这将显着提高我的请求的性能。
编辑:刚刚创建了一个功能请求:列出包括孙子在内的孩子