microsoftgraph / microsoftgraph/msgraph-sdk-dotnet
delta group query call for members
Nobody has claimed this yet.
- Dominant language
- C#
- Stars
- 789
- Forks
- 264
- Avg merge
- 15h 17m
- Merged PRs (30d)
- 3
Description
Describe the bug
var deltaPage = await request.Client.Groups.Delta.GetAsDeltaGetResponseAsync(requestConfiguration =>
{
requestConfiguration.QueryParameters.Select = ["id", "displayName", "description", "members", "deletedDateTime"];
requestConfiguration.QueryParameters.Top = 999;
});
await IteratePageAsync(request.Client, deltaPage);
// Recursively fetch next pages if they exist
while (deltaPage.OdataNextLink != null)
{
deltaPage = await GetDeltaWithUrl(request, deltaPage.OdataNextLink);
}
return deltaPage;
<PackageReference Include="Microsoft.Graph" Version="5.56.0" />
In query list groups they always members is null
although I use in graph explorer they always have values in members
Expected behavior
In groups they always responded members when I select in query
How to reproduce
var deltaPage = await request.Client.Groups.Delta.GetAsDeltaGetResponseAsync(requestConfiguration =>
{
requestConfiguration.QueryParameters.Select = ["id", "displayName", "description", "members", "deletedDateTime"];
requestConfiguration.QueryParameters.Top = 999;
});
await IteratePageAsync(request.Client, deltaPage);
// Recursively fetch next pages if they exist
while (deltaPage.OdataNextLink != null)
{
deltaPage = await GetDeltaWithUrl(request, deltaPage.OdataNextLink);
}
return deltaPage;
<PackageReference Include="Microsoft.Graph" Version="5.56.0" />
In query list groups they always members is null
although I use in graph explorer they always have values in members
SDK Version
5.56.0"
Latest version known to work for scenario above?
No response
Known Workarounds
No response
Debug output
Click to expand log
```</details>
### Configuration
_No response_
### Other information
_No response_
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the Groups delta request shown in the issue with Microsoft.Graph 5.56.0, including the selected members field, and compare its response with Graph Explorer. Check whether the discrepancy is in SDK request generation or the Microsoft Graph response; done means identifying and fixing the SDK behavior or documenting that the service does not return members for this query.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- csharp
- Domain
- api, backend
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100