use of com.microsoft.graph.requests.DirectoryObjectCollectionWithReferencesPage in project msgraph-sdk-java by microsoftgraph.
the class UserTests method getMeTransitiveReferences.
@Test
public void getMeTransitiveReferences() {
DirectoryObjectCollectionWithReferencesPage page = graphServiceClient.me().transitiveMemberOf().references().buildRequest().get();
assertNotNull(page);
}
use of com.microsoft.graph.requests.DirectoryObjectCollectionWithReferencesPage in project msgraph-beta-sdk-java by microsoftgraph.
the class UserTests method getMeTransitiveReferences.
@Test
public void getMeTransitiveReferences() {
DirectoryObjectCollectionWithReferencesPage page = graphServiceClient.me().transitiveMemberOf().references().buildRequest().get();
assertNotNull(page);
}
Aggregations