GraphQL API Improvements
See original GitHub issue- Add GraphQL Input validation using fairybread.
- Evaluate switching to C# XML doc comments for adding GraphQL type documentation.
- Evaluate switching to annotations instead of code first approach.
- Fix resolving of Redis
IConnectionMultiplexer
inAddRedisQueryStorage
and remove workaround (See https://github.com/ChilliCream/hotchocolate/issues/3470). - Support Open Telemetry.
- Add
services.InitializeOnStartup()
afterservices.AddGraphQL()
https://github.com/ChilliCream/hotchocolate/pull/4294.
Waiting for Hot Chocolate vNext
- Add DateOnly and TimeOnly support https://github.com/ChilliCream/hotchocolate/issues/4328.
- Enable authorization on web sockets based subscriptions (See https://github.com/ChilliCream/hotchocolate/issues/3119 and https://github.com/ChilliCream/hotchocolate/issues/3003).
- Update tests to use Strawberry Shake (See this) when it adds support for unit testing with
WebApplicationFactory
. - Add Query, Result and Error information to Serilog Request Logging (https://github.com/ChilliCream/hotchocolate/issues/2221).
- Support logging.
Issue Analytics
- State:
- Created 2 years ago
- Comments:9 (8 by maintainers)
Top Results From Across the Web
GraphQL Best Practices
When there's limited control over the data that's returned from an API endpoint, any change can be considered a breaking change, and breaking...
Read more >Deploying API changes with Managed Federation and ...
Deploying API changes with Managed Federation and GraphOS. federation. A federated GraphQL API is a multi-tiered architecture made up of independent components.
Read more >GraphQL vs. REST APIs: Why you shouldn't use GraphQL
Discuss the drawbacks of using GraphQL, including performance issues, problems with GraphQL schemas, and complex queries.
Read more >GraphQL Alpha Updates -- New APIs and Improvements!
The GraphQL API now supports query variables for use in any valid GraphQL query, for authentication-related purposes like merchantId , and for ...
Read more >Changes to the GraphQL APIs
This page contains information about our change management policies for APIs, so you can know what to expect and how to track and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Turns out I actually misinterpreted Sergey’s benchmarks haha, I thought the WithoutValidation and WithValidation runs were both with AppAny and basically showing that his validation middleware won’t incur a cost when there’s no validator for an arg. But in fact it was just showing literally if there was no validation library hooked up at all.
In any case, I’ve got a v7 prev 1 ready that uses the type interceptor approach I spoke of and I’ll have a look at doing a PR here ntext
@RehanSaeed , yea no worries, happy to when I get a sec and 100% understood on the maintenance front. Maybe this weekend I’ll have the time to implement the type interceptors improvement; then I’ll look to submit a PR here.