This repository was archived by the owner on Dec 19, 2023. It is now read-only.
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
Webflux returns Mono#toString in response if used in Query/Mutation #326
Closed
Description
Pretty much sums it up for me.
I suppose that you only supposed to use reactive types in a subscription? Is this limitation really necessary? I think for Mono
it could very well be inside query or mutation. What is more, if, inside my mutation resolver method, I call service.getStuff().block()
then Spring throws an exception that you can't block here, so I have to put my mutation inside a subscription instead, which feel a bit wrong