How to get admin roles that I am a member of, from Microsoft Graph using .Net Client SDK?
问题 I know how to get member directory roles filtering by type using the rest query below: https://graph.microsoft.com/v1.0/me/memberOf/$/microsoft.graph.directoryRole So the response from MS Graph api only contains directoryRole objects. Not sure how this can be done using the MS Graph .Net client SDK as we do not specify any OData keyword like Select or Filter in the actual Rest request. Note that I do not want to call just memberOf and filter directoryRole type responses in memory on client