I noticed that GraphQL-SPQR has at least a couple properties that you can configure (e.g. graphql.spqr.gui.enabled=true
). Is there a configuration for specifying to use Gson instead of Jackson for object serialization/deserialization?
If there is not configuration, is there some other way I can use Gson instead of Jackson for GraphQL-SPQR?
NOTE: I am already using
spring.http.converters.preferred-json-mapper=gson
in myapplication.properties
, to override spring in general to use Gson instead of Jackson, but it doesn't seem to override GraphQL-SPQR's value mapper (defaults to Jackson).
Any help is greatly appreciated :)