Using the Microsoft Graph quick start guide, I can get my user object with
var one = await graphClient.Me.Request().GetAsync();
But it only includes values for these properties
BusinessPhones
DisplayName
GivenName
Id
JobTitle
Mail
OfficeLocation
Surname
UserPrincipalName
Where the rest are just null
. However, I expect to see some values in, for example AboutMe
.
I can retrieve that value specifically with
var one = await graphClient.Me.Request().Select("aboutme").GetAsync();
But is there a way to get all properties?
I tried
var one = await graphClient.Me.Request().Select("").GetAsync();
var one = await graphClient.Me.Request().Select("*").GetAsync();
But that doesn't return all properties.