The GraphQL Java Generator makes it easy to work in Java with graphQL in a schema first approach. This project is a code generator, that allows to quickly develop GraphQL clients and GraphQL servers in java, based on a GraphQL schema. That is: graphql-java-generator generates the boiler...
srcDirs += '/build/generated/resources/graphqlGradlePlugin' // Let's configure the GraphQL Gradle Plugin: // All available parameters are described here: // https://graphql-maven-plugin-project.graphql-java-generator.com/graphql-maven-plugin/generateClientCode-mojo.html generateClientCodeConf {...
<properties> <graphql-maven-plugin.version>2.4</graphql-maven-plugin.version> </properties> <build> ... <plugin> <groupId>com.graphql-java-generator</groupId> <artifactId>graphql-maven-plugin</artifactId> <version>${graphql-maven-plugin.version}</version> <executions> <execution> <goals...
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "extensions" (class com.graphql_java_generator.client.response.JsonResponseWrapper), not marked as ignorable (2 known properties: "data", "errors"]) at [Source: (org.glassfish.jersey.message.internal.ReaderInterceptorEx...
Hi, it seems that there is something not working when you define a Subscription returning an enum. This is my Subscription: featureStatus(feature: Feature): FeatureStatus! where enum FeatureStatus { HIDDEN ERROR ALERT SUCCESSFULL WARNING...
Hi, we are using a different target folder and as of now we have to override our default hardcoded "target" folder. <configuration> <targetResourceFolder>${project.build.directory}/generated-resources/graphql-maven-plugin</targetResource...