4

在这里,我试图根据创建日期过滤数据。在第一次我尝试在 Graph Explorer 中并且它正在工作。

https://graph.microsoft.com/v1.0/me/messages?$filter=createdDateTime ge 2017-09-04&$select=subject,lastModifiedDateTime

现在尝试在 Dell Boomi 中实现相同的功能。这是拉取所有项目的资源路径:sites/{id}.sharepoint.com:/sites/{id}:/lists/{list_id}/items 它工作正常。

之后我添加过滤条件:

sites/{id}.sharepoint.com:/sites/{id}:/lists/{list_id}/items?$filter=lastModifiedDateTime ge 2017-09-04&$select=email,displayName

这里出现错误。这是错误消息:

<HTML><HEAD><TITLE>Bad Request</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Bad Request</h2>
<hr><p>HTTP Error 400. The request is badly formed.</p>

有人可以帮忙吗,如何解决这个问题?这是样本数据。

> {   "@odata.context":
> "https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.list)(&#39;1334af71-5b7a-4276-a8d8-c3f3f129051d&#39;)/items",
> "value": [
>     {
>       "@odata.etag": "&quot;ef6e961c-a956-400e-a77d-f044d2e0b894,8&quot;",
>       "createdDateTime": "2018-05-24T13:38:10Z",
>       "eTag": "&quot;ef6e961c-a956-400e-a77d-f044d2e0b894,8&quot;",
>       "id": "3",
>       "lastModifiedDateTime": "2018-06-18T10:24:27Z",
>       "webUrl": "https://{id}.sharepoint.com/sites/{id}/Doc%20Interfaces/757391.pdf",
>       "createdBy": {
>         "user": {
>           "email": "abc@abc.COM",
>           "id": "173abc",
>           "displayName": "abc"
>         }
>       },
>       "lastModifiedBy": {
>         "user": {
>           "email": "xyz@abc.COM",
>           "id": "234xyz",
>           "displayName": "xyz"
>         }
>       },
>       "parentReference": {
>         "id": "03fe-16595a0da875"
>       },
>       "contentType": {
>         "id": "0x01"
>       },
>       "fields@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(microsoft.graph.list)(&#39;1334f71-c3f3f129&#39;)/items(&#39;3&#39;)/fields/$entity",
>       "fields": {
>         "@odata.etag": "&quot;ef6e961-f044d2e0b894,8&quot;",
>         "FileLeafRef": "757391.pdf",
4

3 回答 3

6

简答

使用自动生成的 SharePoint 列表项字段CreatedModified

/items?expand=fields&$filter=fields/Modified gt '2018-01-01'

重要的提示

要对这些字段执行过滤查询,您必须:

  • 索引这些列(请参阅此处的方法)
  • 或在您的请求中设置“首选:HonorNonIndexedQueriesWarningMayFailRandomly”标头(Microsoft 不推荐)

解释

似乎不支持对图形端点返回的值(例如 lastModifiedDateTime、createdDateTime 等)进行过滤,因为像/items&$filter=lastModifiedDateTime ge '2018-01-01'这样的请求将返回“无效过滤子句”错误。

于 2018-06-21T16:18:55.727 回答
1

我刚刚在向 Boomi 提交 OData 查询时解决了一个非常相似的问题。问题是过滤器字符串中的空格:

您的字符串: $filter=lastModifiedDateTime ge '2017-09-04' 应该是: $filter=lastModifiedDateTime%20ge%20'2017-09-04'

于 2020-03-17T17:26:56.743 回答
0

请试试

sites/{id}.sharepoint.com:/sites/{id}:/lists/{list_id}/items?$filter=lastModifiedDateTime ge '2017-09-04'&$select=email,displayName

filter=lastModifiedDateTime ge '2017-09-04'--> 单引号

注意:如果您选择任何查找值,您需要使用$expand查询选项例如:

sites/{id}.sharepoint.com:/sites/{id}:/lists/{list_id}/items?$filter=lastModifiedDateTime ge '2017-09-04'&$select=email,displayName&$expand=displayName/Name
于 2018-06-19T17:09:49.323 回答