I am working on an Azure Function App. It needs to retrieve all groups in Exchange. I am using this simple C#, .NET Core code:
GraphServiceClient graphClient;
var groups = graphClient.Groups.GetAsync().Result;
But, I only get 100 groups. How do I increase this limit to unlimited?
A lot of searching, but no luck.

You can make use of the
PageIterator: