Andrew Omondi

Results 199 comments of Andrew Omondi

Guidance for SDK users on logging requests can be found [here](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/blob/dev/docs/logging-requests.md)

Closed via https://github.com/microsoftgraph/msgraph-sdk-dotnet/pull/1474

Thanks for raising this @naamunds Any chance you can also share the exception trace that is captured in this scenario as well? It would also be really helpful if you...

I was able to replicate this to graph explorer by trying to query data for a non-existing user as below. ```json { "error": { "code": "Request_ResourceNotFound", "message": "Resource '[email protected]' does...

This will need some investigation on how to best handle this on the SDK. This could be related to how the DeltaResponseHandler does some of it work.

Hey @bingjing-xiaozhao, In your scenario, have you included the properties you wish to see the values of in the select statement? According to the documentation [here](https://docs.microsoft.com/en-us/graph/api/user-get?view=graph-rest-1.0&tabs=http), the API only returns...

Hey @bingjing-xiaozhao, I'll reach out to you directly so that I can follow up.

In general, we no longer store HTTP headers and HTTP status codes in the AdditionalData. But only properties returned form the API that are not included in the schema. In...

Hey @kenakamu, For starters you could always checkout the tests [here](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/blob/21efc24ff8ad1f00a6ec1227fa3a50df115e1e90/tests/Microsoft.Graph.DotnetCore.Core.Test/Requests/BatchRequestTests.cs#L50). You could also use checkout the tests for BatchResponseContent and BatchRequestContent [here](https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/tree/dev/tests/Microsoft.Graph.DotnetCore.Core.Test/Requests/Content)

With the latest Kiota previews, handling the responses for collections are now consistent with the API response shape and provide the same experience when making calls for batch and non-batch...