我正在对Microsoft Graph CSharp SDK
进行编码,我正在尝试证明在DriveItems
上过滤CreatedDateTime
的能力。
我知道如果我构建一个类似的调用:
await graphServiceClient.Drives["user@user.onmicrosoft.com"].Root.Request().GetAsync();
将返回所有元数据,但是,我想知道是否有办法构建一个调用,它会在一次调用中过滤CreatedDateTime
,这可能吗?
答案 0 :(得分:3)
只要基础Graph API方法支持,您就可以对您的请求应用选择,过滤等查询选项。它有点隐藏,但这是documented in the wiki。
await graphServiceClient.Drives["user@user.onmicrosoft.com"]
.Root
.Request()
.Filter(...)
.GetAsync();