graphql-java-tools
graphql-java-tools copied to clipboard
A schema-first tool for graphql-java inspired by graphql-tools for JS
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [org.jetbrains.kotlin:kotlin-maven-plugin](https://kotlinlang.org/) ([source](https://redirect.github.com/JetBrains/kotlin)) | `2.0.20` -> `2.0.21` | [](https://docs.renovatebot.com/merge-confidence/) |...
## Issue Description Take a look at the following [example](https://www.apollographql.com/docs/federation/entities-advanced#using-requires-with-fields-that-take-arguments) in the Apollo documentation. Currently, the server would expect a set of classes as follows: ``` class Product { id,...
## Description With a [schema like this](https://github.com/TsvetomirValchev/graphql-reproduce/blob/main/service/src/main/resources/schema.graphqls) Previously we could execute a query like: ``` query quests { quests( filter: { states: ["ONGOING"] } ) { questId } } ```...
## Description I'm seeing unexpected behavior from `SchemaParser` that prevents me to properly upgrade to the newest versions of graphql-java 19.2 & graphql-java-kickstart 15. I'm using GraphQL Federation via `com.apollographql.federation:federation-graphql-java-support:2.2.0`...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [peter-evans/create-pull-request](https://togithub.com/peter-evans/create-pull-request) | action | major | `v5` -> `v6` | ---...
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://togithub.com/actions/cache) | action | major | `v3` -> `v4` | ---...
## Description Here's the sample schema as in https://github.com/graphql-java-kickstart/samples/blob/master/directives/src/main/resources/schema.graphqls#L1-L19 ``` directive @range( min: Float!, max: Float! ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION type Query { withInput(input: InputObject): Float } input InputObject...
Since update to 3.1.0 version (previous was 13.0.2) ## Description There is class, that union Mutation and Subscription resolver interfaces ``` @Component public class UserAttributeMutation implements GraphQLMutationResolver, GraphQLSubscriptionResolver { ```...
__I want to suggest an idea and checked that ...__ - [X] ... to my best knowledge, my idea wouldn't break something for other users - [X] ... the documentation...
Resolves #736 ## Checklist - [X] Pull requests follows the [contribution guide](https://github.com/graphql-java-kickstart/graphql-java-tools/wiki/Contribution-guide) - [X] New or modified functionality is covered by tests ## Description For unused type handling in SchemaClassScanner,...