graphql-spqr-spring-boot-starter
graphql-spqr-spring-boot-starter copied to clipboard
improve query param handling fixes #58
improve query param handling fixes #58
Sorry for the huge delay, and thanks a bunch for this!
Unfortunately, you introduced a direct dependency to Jackson which is problematic, as Jackson might not be available. Both SPQR and Spring work with other libraries and must adapt to whterever is configured.
A way to work around this is to abstract the deserialization either behind SPQR's own ValueMapper
, or Spring's HttpMessageConverter
(which is intended for parsing message bodies but can be abused for query params).
If you wish, I can take it over and make the changes to your branch (assuming you allowed me when making the PR), so that you commits stay. Or you can keep working on it? Ping me on Gitter if you wish to consult.