Issue with schema validation on OsgiGraphQLHttpServlet v15 #555
-
Hello, I'm having issue building/validating a graphql schema (specifically this rule) because of missing directives when The problem is I can't seem to figure out how/where to inject directive definitions when schema is being created (in doUpdateSchema() here) i.e. Any help/pointers would be appreciated, thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @gflores-jahia, Thanks for your contribution with this PR 🎉 |
Beta Was this translation helpful? Give feedback.
-
@gflores-jahia I merged your PR on master and you can find the fix in the 15.2.1-SNAPSHOT version: <dependency>
<groupId>com.graphql-java-kickstart</groupId>
<artifactId>graphql-java-servlet-javax</artifactId>
<version>15.2.1-SNAPSHOT</version>
</dependency> the specification of the following repository is required: <repository>
<id>oss.sonatype.org-snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository> |
Beta Was this translation helpful? Give feedback.
-
Thanks! |
Beta Was this translation helpful? Give feedback.
@gflores-jahia I merged your PR on master and you can find the fix in the 15.2.1-SNAPSHOT version:
the specification of the following repository is required: