查询以获取对话中已发送的项目
Query to fetch sent items in a conversation
目前我正在使用下面的查询,其中 return 是对话中的所有邮件项目,我觉得效率很低,因为我只需要发送的文件夹项目。如何将过滤器查询修改为 return 当前用户发送的项目。
查询:
let query = "ConversationId eq 'AAQkAGUzZmY0NThiLTUxMjAtNDBhNC05NGFkLTQ3NmRlYjlkMzRiNgAQAOO9BXAJn/VDvZTkMjcb52s='";
https://outlook.office.com/api/beta/me/Messages?$filter=encodeURIComponent(query)
您需要将路径范围限定为“已发送邮件”文件夹:
/me/mailFolders('SentItems')/messages$filter=encodeURIComponent(query)
目前我正在使用下面的查询,其中 return 是对话中的所有邮件项目,我觉得效率很低,因为我只需要发送的文件夹项目。如何将过滤器查询修改为 return 当前用户发送的项目。
查询:
let query = "ConversationId eq 'AAQkAGUzZmY0NThiLTUxMjAtNDBhNC05NGFkLTQ3NmRlYjlkMzRiNgAQAOO9BXAJn/VDvZTkMjcb52s='";
https://outlook.office.com/api/beta/me/Messages?$filter=encodeURIComponent(query)
您需要将路径范围限定为“已发送邮件”文件夹:
/me/mailFolders('SentItems')/messages$filter=encodeURIComponent(query)