我有一个任务来列出租户中的所有来宾帐户,并对此进行查询。就像从特定公司查找所有用户一样。 我发现查询所有用户非常简单:
https://graph.microsoft.com/v1.0/users?$filter=userType eq 'Guest'
但是,当我想过滤这些结果时,我遇到了问题。我不能使用startswith过滤器,因为域是电子邮件地址的结尾。
Contains
似乎不受支持:here
The contains string operator is currently not supported on any Microsoft Graph resources.
是否有人找到一种解决方法来按电子邮件域进行过滤?