Microsoft graph api 根据日历中的canEdit进行筛选会返回反向结果

Microsoft graph api 根据日历中的canEdit进行筛选会返回反向结果,microsoft-graph-api,outlook-restapi,Microsoft Graph Api,Outlook Restapi,我正在使用所描述的列表日历端点。对canEdit属性应用$filter时,结果与筛选条件完全相反 当我打电话时: https://graph.microsoft.com/v1.0/me/calendars?$filter=canEdit eq false 它返回日历,其中canEdit=true 如果我说相反的话: https://graph.microsoft.com/v1.0/me/calendars?$filter=canEdit eq true 它返回日历,其中canEdit=fal

我正在使用所描述的列表日历端点。对
canEdit
属性应用
$filter
时,结果与筛选条件完全相反

当我打电话时:

https://graph.microsoft.com/v1.0/me/calendars?$filter=canEdit eq false
它返回日历,其中
canEdit=true

如果我说相反的话:

https://graph.microsoft.com/v1.0/me/calendars?$filter=canEdit eq true

它返回日历,其中
canEdit=false

我已经能够复制此问题,并在GitHub存储库中记录了此问题的错误:。