spring-graphql-common icon indicating copy to clipboard operation
spring-graphql-common copied to clipboard

Spring Framework GraphQL Library

Results 10 spring-graphql-common issues
Sort by recently updated
recently updated
newest added

The latest version of graphql-java (3.0.0) has changed DataFetchingEnvironment from a class to an interface. This is causing an exception in ReflectionGraphQLDataFetcher.collectBindByClassValues which is expecting a class instead of an...

Do not try to expose private final static contstants - cause they are private - commonly it is unreasonably to expose to client Serializable serialVersionId

1. Added possibility to configure custom type to GraphQLScalarType resolvers. To add resolver you must implement interface com.oembedler.moon.graphql.engine.dfs.GraphQLTypeResolver and add it to configuration with addGraphQLTypeResolver method 2. Do not try...

Because of the wrapping that takes place in spring-graphql-common, the contents of any exceptions thrown by a data fetcher (specifically mine is an @ GraphQLMutation) is blown away by the...

graphql-java library has a bug in version 2.0.0 (that I think may only have been fixed in 2.2.0) which causes exceptions anytime you use the operationName field in a query....

My understanding is that this project wants to allow easy use of existing POJOs in your query classes, and the PropertyDataFetcher is providing this support. I've got some POJOs from...

Hello, It seems like there's an issue handling "static final" fields for the models in the schema. For example, I'm getting the following exception when trying to parse a class...

Just out of curiosity, why `spring-graphql-common` depends on java `1.8`, rather than some lower version like `1.6`? our production system is using jdk `1.6` now, but we want to use...

Given the following testCase https://gist.github.com/ayhanap/e4fcf72591fe960db658f6f1967447e2 `@GraphQLInterface` annotation does not search for its implementations. So if we have a field with method resolver returning an interface, it cannot resolve types because...

This commit https://github.com/graphql-java/graphql-java/commit/c3fbc2d594766b445f975a63154ce2867d03c93d of _graphql-java_ breaks the `@GraphQLUnionType` annotation at the line https://github.com/oembedler/spring-graphql-common/blob/f5b699f4073eec50b18e71bb22ae085500ce780a/src/main/java/com/oembedler/moon/graphql/engine/dfs/GraphQLSchemaDfsTraversal.java#L163 with `Caused by: java.lang.NoSuchMethodError: graphql.schema.GraphQLUnionType$Builder.possibleTypes([Lgraphql/schema/GraphQLType;)Lgraphql/schema/GraphQLUnionType$Builder;` Apperantly they changed the method signature. **With v2.0.0 of _graphql-java_ this just...