Spring GraphQL 1.0.0-M4 Released
The Spring GraphQL team has just released the 4th milestone towards a 1.0.0 release. Thanks to all contributors!
In this milestone, we have further improved the annotation programming model and extended the Spring Data support that were provided in the previous milestones.
Interface Projections for GraphQL Arguments
If you're familiar with Spring Data's Interface-based Projections, then this new feature will make perfect sense: you can use a well-defined interface to work with GraphQL arguments, without the need for any Object implementation.
For example:
@Controller
public class…