I am trying to get a (paged) list of all users in a directory, with the manager property extension. When I run the following HTTP request, it works the way I want:
https://graph.windows.net/DOMAIN/users/?$expand=manager&api-version=2013-11-08
However, I do not understand how to make the same request with the Azure AD Graph client. This is what I am trying:
var userResult = _activeDirectoryClient.Users.Expand(x => x.Manager).ExecuteAsync().Result;
c # graph azure office365 azure-active-directory
svinto
source share