We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configuration
<dependency> <groupId>org.eclipse.microprofile.graphql</groupId> <artifactId>microprofile-graphql-api</artifactId> <version>1.0-M5</version> </dependency> <dependency> <groupId>io.leangen.graphql</groupId> <artifactId>graphql-spqr-module-microprofile</artifactId> <version>1.0-SNAPSHOT</version> <scope>system</scope> <systemPath>${basedir}/lib/graphql-spqr-module-microprofile-1.0-SNAPSHOT.jar</systemPath> </dependency>
schema = new GraphQLSchemaGenerator() .withModules(new MicroProfileModule()) ...
models
class Bar { } class Foo { Bar bar; // setter and getter are omitted }
endpoint
@Mutation("create") public String create(Foo foo) { return "string"; }
A side reload with GraphiQL always gives:
type BarInput not found in schema
This only happens with nested user-defined types, whether as a class or an enumeration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
configuration
models
endpoint
A side reload with GraphiQL always gives:
This only happens with nested user-defined types, whether as a class or an enumeration.
The text was updated successfully, but these errors were encountered: