Michael Staib

Results 571 comments of Michael Staib

@CoreDX9 could you sign the CLA so we can merge this now? Finally got back to this PR :)

Thanks for your investigation into this. A lot of these are optimizations for getting better SQL with the current database drivers. We can however create a new driver that produces...

This is where the standard handler for the filter expressions are registered: https://github.com/ChilliCream/hotchocolate/blob/main/src/HotChocolate/Data/src/Data/Filters/Expressions/Extensions/FilterConventionDescriptorQueryableExtensions.cs Each operation has its own handler like the following: https://github.com/ChilliCream/hotchocolate/blob/main/src/HotChocolate/Data/src/Data/Filters/Expressions/Handlers/Boolean/QueryableBooleanEqualsHandler.cs At the moment the handler use a...

You can also do all of this in your project if you do not want to do a PR ... the HotChocolate.Data is very modular.

same thing. here is where we register: https://github.com/ChilliCream/hotchocolate/blob/main/src/HotChocolate/Data/src/Data/Sorting/Expressions/Extensions/SortConventionDescriptorQueryableExtensions.cs and here is one of the handlers: https://github.com/ChilliCream/hotchocolate/blob/main/src/HotChocolate/Data/src/Data/Sorting/Expressions/Handlers/QueryableAscendingSortOperationHandler.cs

If you get stack give a ping to @PascalSenn on slack.

Thanks for your feedback ... we are currently working on fixing this issue.

We no longer support netcore 3.1 for Data since the final release of 13 will be somewhere in December netcore 3.1 will be out of support. Full support of all...

This is not really possible as the scalars in GraphQL also define how they translate into JSON or other serialization formats. Also things like casing are very much specified by...