Ronald K

Results 77 comments of Ronald K

@CmckeeverNova Are you able to access the fields using `device.GetAdditionalData()`

@kwapik could you [Graph Explorer](https://developer.microsoft.com/en-us/graph/graph-explorer) to execute the same get command and share the response you receive.

Hi @ritu-rubrik, thanks for trying out the SDK. If you would like to override the Retry handler, you are able to do it when executing the command i.e here is...

@baywet this repo does not have contributing.md and changelog, should I introduce them?

@baywet just making sure we are on the same page > No I meant basically moving the code that's in the client now to register the providers to this new...

Hi @baywet @andrueastman This is a case where the json payload has explicitly defined a field as null, and the intention is to differentiate fields that were not returned but...

A pointer to an uninitialized value and a nil would evaluate to the same value but different types ```go type Null interface{} func checkType(v interface{}) { switch v := v.(type)...

Yes it will, but it will give the ability to differentiate is a serialized value was null as opposed to if a serialized value was not present at all. As...

Hi @johnf , thanks for trying the SDK. in the example give, if you add an import statement for [side-effects only](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import) `import "@microsoft/msgraph-sdk-users";` does tree shaking still occur?

@johnf thanks for the information. As noted in the [documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import) I would expect that modules do not get tree shaken unless there is a ESModule configuration that explicitly specify `...