graphql-java-annotations icon indicating copy to clipboard operation
graphql-java-annotations copied to clipboard

GraphQL Annotations for Java

Results 35 graphql-java-annotations issues
Sort by recently updated
recently updated
newest added

I'm using annotation to generate graphql schema. However, it didn't work when the annotation handle map object. For example, I put the @GraphQLField on the field which type is like...

I've simply renamed the bundle.bnd to bnd.bnd so that the new version of the BND gradle plugin picks up the BND configuration correctly. This seems to generate the proper OSGi...

Following the upgrade of Gradle and the BND plugin, the OSGi metadata is not properly generated anymore, it puts all the packages in the JAR as Private instead of being...

Meantime Java GraphQL 17.2 is out, any plans to update with it?

spring-graphql annotations `@GraphQlController`, `@QueryMapping`, `@SubscriptionMapping`, `@MutationMapping`.

If an exception is thrown in a method annotated with `@GraphQLField` the GraphQL response's `errors` block contains a message about InvocationTargetException, which isn't very useful as it gives no information...

The implementation of buildArg() isn't very strong, and is somewhat brittle if e.g. a constructor parameter doesn't match an item in the GraphQL schema. We should be permitted to just...

This is feature request for allowing Java classes – not only interfaces – for defining GraphQL interfaces. For instance, like this: ```java @GraphQLInterface public abstract class MyInterface { @GraphQLField public...

How can I distinguish in java graphQL if a parameter was explicitly set to null, or if it was not provided at all? ``` mutation { updateProducts(products: [ { id:...