Spring for GraphQL 1.4 RC1 Released
On behalf of the Spring for GraphQL team, I am pleased to announce the availability of 1.4.0-RC1, our last stop before the generally available release. In case you missed it, 1.4.0-M1 already shipped lots of new features and improvements.
You can read the full changelog for 1.4.0-RC1 and the upgrade notes on our wiki.
DataLoader observations
The Spring for GraphQL instrumentation creates Micrometer Observations for GraphQL requests and DataFetcher
operations.
Some data fetching operations are relying on batch loading calls to avoid the "N+1 problem".
In previous generations, one would not see the difference between a "full" data fetching operation and one that simply delegates to DataLoader
…