Replies: 2 comments
-
If you don't use graphql-java-tools or annotations, then maybe using graphql-java Spring library might be a better fit instead? See https://www.graphql-java.com/tutorials/getting-started-with-spring-boot/ |
Beta Was this translation helpful? Give feedback.
-
Hi thank you,
It would be nice though if it was possible to merge Resolver based auto generated via graphql-tools subscriptions with the custom generated schema? |
Beta Was this translation helpful? Give feedback.
-
Hi,
I am using rejoiner for generating my schema which I am generating and injecting using:
This works very well, but now I am trying to implement subscriptions, so I need to extend the given schema.
I have tried according to the example with implementing a Resolver with
GraphQLSubscriptionResolver
interface.This leads the library to start searching for schema file definitions in resources (which aren't there).
How can I add subscriptions with resolvers to my schema so they are included in the generated custom schema from above?
Thank you very much in advance,
Nico
Beta Was this translation helpful? Give feedback.
All reactions