Replies: 4 comments 5 replies
-
/cc @jmartisk (graphql), @phillip-kruger (graphql) |
Beta Was this translation helpful? Give feedback.
-
What do you want to add to the schema ? There might be easier ways to do it. What you have above should work. Can you share a reproducer ? |
Beta Was this translation helpful? Give feedback.
-
I had java interfaces that behaved as graphQL Types in the schema thanks to the
The problem is now I need to move theses interfaces to a library in which I won't be able to use the Is there a way to "annotate" classes and interfaces in libraries ? I'll try and make a reproducer today. |
Beta Was this translation helpful? Give feedback.
-
Here's the reproducer https://github.com/Pilpin/quarkus-graphql-schema-bug I don't think the builder returned is used. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I would like to edit the schema so I tried using a function like
public GraphQLSchema.Builder editSchema(@Observes GraphQLSchema.Builder builder)
but as far as I understand I can only add things to the builder, I can not modify the schema.I tried something like this
The
System.out.println(node);
gets executed but the schema at url/q/dev-ui/io.quarkus.quarkus-smallrye-graphql/graphql-schema doesn't change.Am I missing something ? Is this even possible ?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions