msgraph-sdk-dotnet icon indicating copy to clipboard operation
msgraph-sdk-dotnet copied to clipboard

Microsoft Graph Client Library for .NET!

Results 212 msgraph-sdk-dotnet issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When listing table rows, the returned WorkbookTableRow does not hold cell values. **To Reproduce** execute following code snippet for any workbook table. ```csharp var rows = await...

Bug
Status: Needs investigation

**Describe the bug** In the Onenote Graph API spec page, there exists a way to show detailed metadata of a page, by using the `pagelevel` query parameter. This is clearly...

Bug: metadata
OpenApi

Use case: We want to iterate pages on the client (via a call to the server that has app permissions), pass an opaque token from the server to the client...

Let's pick on one example from https://github.com/microsoftgraph/dotnet-aad-query-sample/blob/main/GraphDataService/GraphDataService.cs ``` public IAsyncEnumerable GetGroups(string[] select, string filter, string[] orderBy, string search) { var requestInfo = _graphClient.Groups .ToGetRequestInformation(rc => { rc.Headers = EventualConsistencyHeader; rc.QueryParameters.Count...

Request: enhancement
Status: Needs investigation

With v4 of Graph, our custom paging had a callback to tell the calling code "we got a new page" - that is not possible now. Also not possible is...

Request: enhancement
P2

**Describe the bug** One of the big changes from v4 to v5 was the introduction of the `BackingStore`. And this approach of a stateful object that only returns the changed...

Request: enhancement
P1

Hi ! I'm having some trouble using the endpoint search/query and I'm looking for some tips and advice to optimize it. **1st problem**: Although 2 graph queries are launched in...

Question: SDK

I would like to propose an enhancement to the Graph API .NET SDK that enables better handling of unchanged objects during patch and post operations. Currently, even if there are...

Request: enhancement

**Describe the bug** In Graph explorer, The snippet for ``` https://graph.microsoft.com/v1.0/sites/contoso.sharepoint.com:/sites/marketing ``` is ``` var graphClient = new GraphServiceClient(requestAdapter); var result = await graphClient.Sites["{site-id}"].Sites["{site-id1}"].GetAsync(); ``` It should be ``` var...

Bug: documentation

I try to get a list of the root directories of a drive. According to [https://learn.microsoft.com/en-us/graph/api/driveitem-list-children](https://learn.microsoft.com/en-us/graph/api/driveitem-list-children), I would expect something like this: ``` await graphClient.Drives[driveId].Root.Children.GetAsync() ``` But the property "Root.Children"...

Question: SDK
Needs: Attention :wave: