Michael Staib

Results 571 comments of Michael Staib

@PascalSenn is this the JSON update issue?

We check, if the queryable also implements `IAsyncEnumerable` than we will use the async variant. In the case of EFCore, they are implementing `IAsyncEnumerable`.

Just double checked ... in the case of EFCore you can do the following, and that is what we do: ```csharp if (source is IAsyncEnumerable asyncEnumerable) { return asyncEnumerable; }...

What can be done are several things.... either a middleware specific for cosmos of a paging provider for cosmos.

> Yeah, I think cosmos ought to implement Iasyncenumerable.. but you guys do have a ravendb provider, surely cosmos is more popular than that in 2023… right? Not sure about...

Just checked ... 6 issues including this ... and 5 where asking question for cosmos with EFCore ... so not a lot of demand. Demand as from questions on slack...

But if you want to do the work for the driver we will help you with that. The work for the MartenDB diver was also done by one of our...

We have a standard template for this. I can post you later a pr that shows how such a driver is implemented.

We have completely reworked the formatter here: https://github.com/ChilliCream/graphql-platform/pull/6981