Martin Machacek

Results 159 comments of Martin Machacek

Let's assume that I have the following code for v4 `client.Users[userId].CalendarView.Request(queryOptions).Filter(filterQuery).Expand(expandOptions).Select(SelectQuery).GetAsync()` The code for v5 looks like this but there is no Expand property in `CalendarViewRequestBuilderGetQueryParameters` class ``` client .Users[userId]...

How to get id of uploaded file? I have the following code to upload file. `PutAsync()` doesn't return any response but `PUT /drives/{drive-id}/items/{parent-id}:/{filename}:/content` returns `driveItem` `await _graphServiceClient.Drives[{drive-id}].Root.ItemWithPath({filename}).Content.PutAsync(file);` now I need...

To create a new table I can call ``` POST https://graph.microsoft.com/v1.0/me/drive/items/{id}/workbook/tables/add Content-type: application/json { "address": "Sheet1!A1:D5", "hasHeaders": true } ``` In code I can call `await _graphServiceClient.Drives[driveId].Items[itemId].Workbook.Tables.PostAsync(WorkbookTable);` but `WorkbookTable` doesn't...

Cannot expand attachments for messages. There is no Expand property ``` var messagesResponse = await _client.Me.Messages.GetAsync(x=> { x.QueryParameters.Select = new string[] { "id", "createdDateTime" }; x.QueryParameters.Expand = new string[] {...

There is tens of `CreateUploadSessionPostRequestBody` classes in different namespaces with very very long names. It's quite complicated to use the correct `CreateUploadSessionPostRequestBody` class. If I use more than one `CreateUploadSessionPostRequestBody`...

@Jwaegebaert Spec updated. Info about required role will be mentioned in the docs.

@milanholemans All requested changes processed.

@milanholemans Thanks for another review. I will double check that all requested changes were processed.