Michael Mainer

Results 137 comments of Michael Mainer

We should have documentation covering hybrid and migration scenario.

@baywet Since we will have the backing store in Kiota, can we make it so that scenarios like this can be handled gracefully? So for example, a property is not...

This certainly is an edge case as most properties are schematized when they are made public. We should consider OpenType scenarios where a property is present without schema and then...

It sounds like the message body is updateable and that the documentation is incorrect. I'm curious, in your batch request, do you order the delete attachment before the update message...

I don't think there is anything wrong with your code or the client library. This looks like service issue. I'm curious, did you find support for If-Unmodified-Since or If-None-Match in...

In the short-term, I advise that you add a retry routine. I'm going to raise this issue with the team that owns the data access layer. Let's see if we...

I agree, that link isn't useful. We don't have a site with documentation other than the [wiki](https://github.com/microsoftgraph/msgraph-sdk-php/wiki) for documentation. I admit this is woefully deficient. Please keep voting and commenting...

Hello @Sam-Othman You need to return a List not a Site object. ```php $list = $graph->createCollectionRequest("GET", "/sites/{site-id}/lists/{list-id}/?expand=columns,items(expand=columns)") ->setReturnType(Model\List::class) ->execute(); ``` Let me know if that helps. If it doesn't, please...

@Sam-Othman Thank you raising this some more. I just realized that we have to rename List to GraphList since List is keyword. Can you try the following: ```php $list =...

I think what's happening is that we don't support the embedded expansion in deserializing our models. https://github.com/microsoftgraph/msgraph-sdk-php/blob/2ff48a3492c7570ed65e5598ecea67d88cc0925e/src/Http/GraphResponse.php#L137 At this point, I think you'll need to either perform this in two...