huysentruitw

Results 31 comments of huysentruitw

I see that [`QueryableOffsetPagingProvider`](https://github.com/ChilliCream/graphql-platform/blob/f041630907f43b273e254267d9de037f17099bb6/src/HotChocolate/Core/src/Types.OffsetPagination/QueryableOffsetPagingProvider.cs#L20) is still throwing a `NotImplementedException` while I could make offset-paging work by inheriting from that provider and implement the `CanHandle` like this: ```C# public sealed class...

@michaelstaib Just saw that the bug-tag was removed. Anyway, I've stumbled across the same issue and since the [AuthorizeMiddleware supports this state](https://github.com/ChilliCream/graphql-platform/blob/main/src/HotChocolate/Core/src/Authorization/AuthorizeMiddleware.cs#L107), I think it's logical that the AspNetCore implementation...

While that works, it feels "hacky" to resolve the `HttpContext` inside the error-filter IMO. Our use-case is to convert it to an HTTP status code. @michaelstaib @PascalSenn any chance to...

@oskrabanek that doesn't look very secure. It seems like anyone can now bypass authentication in your system by adding a comment like `# IntrospectionQuery` somewhere to the query/mutation.

I was trying this work-around on Azure Application Insights and it took me somewhile to realize Application Insights doesn't show the trace DisplayName if the tags `http.route` and `url.path` are...

You changed a bit too much in this PR (tests, version-info, author-info, package-url, etc), so I did the update in a separate commit and have released version 3.0 to NuGet...

There's no real reason, I just picked the same as the service-host itself which is a self-contained deployment. Since there is no NuGet package of this, I don't think it...

Thanks for your question. Preivously, in a more complex project, I was using [AggregateSource](https://github.com/yreynhout/AggregateSource) from Yves Reynhout and that library supports routing and makes a distinction between AggregateRoot's and child...

Thank you very much for this research while I'm on a holiday 🙂 I'm convinced that aggregates or entities should not have to care about loading their history themselves, the...