Nikitha Chettiar
Nikitha Chettiar
I will incorporate the typescript changes for the core part as I am already working on the auth part in core. And marking this issue in the Graph core for...
The msgraph-typescript-typings contains types representing the objects or entities and not the odata response. Please check the [ReadMe](https://github.com/microsoftgraph/msgraph-typescript-typings/blob/master/README.md) for examples. ```typescript const res = await client.api(`/me/drive/root:/${ExcelFilename}:/workbook/worksheets`).get(); const worksheets = res.value...
@M1kep This is intended behavior. Example of using the `Group` type in this case - ```typescript const res = await client.api("/groups").get(); const group = res.value[0] as Group; ``` Please let...
@badsyntax Thank you for your suggestion! The Microsoft Graph Client is the core library which is intended to be light weight with a set of specific functionalities. The typings library...
@Jonas-Seiler-Wave Thank for your feedback!
> It is also returned by the /v1.0/groups API call, so it doesn't look like a case of beta documentation leaking to V1. @nikithauc, I think we should ask the...
@Uninen Thank you for reporting this issue! @n1jmbt I am curious to know what happens if main is set to empty -> main: ""?
@plamber Thank you for initiating this request! This will be an essential improvement to the PageIterator.
@bigwheel Thank you for reporting this issue! I appreciate your feedback of the library and the clear explanation of the issue :) I apologize for the inconvenience caused! At this...
Along with the feedback by @sebastienlevert, feedback in #979 to be taken into consideration.