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

GraphQL Annotations for Java

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

Hi, I created an a extended class with GraphQLTypeExtension annotaion and added interface to it and when i checked the generated schema i didn't see that my type extended this...

- update to latest Gradle (6.6.1) - add the official Gradle Wrapper Validator action (https://github.com/gradle/wrapper-validation-action) - set distribution type to "ALL" (instead of the default bin)

Hello: I am wondering if the ability to include fields automatically from any regular Java object without having to annotate each field with `@GraphQLField` could be something you would consider?...

Hello: I noticed that AnnotationsSchemaCreator adds `Relay.pageInfoType` during the build phase and doesn't allow it to be overridden. I have a use case where I want to federate into a...

We are developing with Spring framework, which is famous for its [@Autowired](https://www.baeldung.com/spring-autowire) and [@Bean](https://www.baeldung.com/spring-bean). But when we are implementing a DataFetcher, we can not leverage this, because the DataFetcher will...

The following code is illegal. However, OutputObjectBuilder does not use the definedFields list (could be a set) to detect and fail on the situation. As a result, the schema builds,...

Currently, the schema supports `int` `String`... Any plan for the support of `Map`?

Although the output is deterministic, I didn't found a way to order the fields alphabetically. For example: ``` public interface Sample { @GraphQLField Integer getId(); @GraphQLField Boolean isActive(); } ```...

Sometimes you can't put annotations because you don't define the underlying class in your project. Other Java annotation libraries such as Jackson solved this with "Mixins". The way it works...

Hi, we are facing an issue with @GraphQLTypeResolver annotation while migrating from 5.4 to the latest 7.2.1. Issue is that our type resolver is not visible by GraphQL: graphql.AssertException: There...