Pavel Steinl
Pavel Steinl
@MelbourneDeveloper yeah, probably going to get as much feedback as me :-) Anyway, I've worked around it the same way I do usually, introduce an additional DateTime input parameter into...
Hi @RehanSaeed, would you accept a PR that adds a destructurer for RegexMatchTimeoutException?
@RehanSaeed heh, never mind, I've cloned the project, added the following test to prove that this isn't implemented yet: ``` var exception = new RegexMatchTimeoutException("input", "pattern", TimeSpan.FromSeconds(1)); Test_LoggedExceptionContainsProperty(exception, nameof(exception.Input), exception.Input);...
hi, the exception is the same, the stacktrace is (obviously) slightly different this time: ``` at HotChocolate.Data.Projections.Expressions.QueryableProjectionScopeExtensions.Project[T](QueryableProjectionScope scope) at HotChocolate.Data.Projections.Expressions.QueryableProjectionContextExtensions.Project[T](QueryableProjectionContext context) at HotChocolate.Data.Projections.Expressions.QueryableProjectionProvider.c__5`1.b__5_0(IResolverContext context, Object input) at HotChocolate.Data.Projections.Expressions.QueryableProjectExtensions.ExecuteProject[T](T input, IResolverContext...
Same after upgrading to 12.9.0. The UseProjection attribute only works with no issues on the Query endpoint, it expands the child navigation property correctly...
yep, only the UseProjection attribute is applied, as per your code snippet. We can try this the other way round, do you have a working sample somewhere that I could...
thanks a lot, I'll give it a go...
have done a fork of the project and it works out of the box. However, as soon as you add mutation conventions into the mix, the same exception is back....
Unfortunately that is not an option at the moment, we've spent the previous "sprint" enabling mutation conventions and updating all of the frontend calls. Once we've stumbled upon this issue,...
Hey Toby, thanks for the ping, much appreciated. Happy to see this implemented, it looks quite similar to what I had in mind :-)