Try this code:
// Code snippets are only available for the latest version. Current version is 5.x
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Groups["{group-id}"].GetAsync((requestConfiguration) =>
{
requestConfiguration.QueryParameters.Select = new string []{"resourceBehaviorOptions","resourceProvisioningOptions" };
});
Note that make sure the property has a value.
Reference document:
https://learn.microsoft.com/en-us/graph/teams-list-all-teams#request-1
https://learn.microsoft.com/en-us/graph/group-set-options
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.