Azure GraphServiceClient limits results to 100, how to get all (C# .NET Core)?
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…