Spring GraphQL 1.0.0-M3 Released
The Spring GraphQL team is pleased to announce a 3rd milestone towards a 1.0.0 release, driven with great help from the community .
Batch Mapping
The 2nd milestone introduced an annotation programming model for GraphQL data controllers with @SchemaMapping
methods. The 3rd milestone adds a new @BatchMapping
method.
If you're familiar with GraphQL, you know that navigating an object graph can cause the "N+1 queries problem" if we're not mapping carefully object relations. We could already leverage the Batching feature from GraphQL Java to solve that problem, but this release introduces dedicated support as well as an @BatchMapping
annotation…