graphql-java-tools
graphql-java-tools copied to clipboard
A schema-first tool for graphql-java inspired by graphql-tools for JS
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/graphql-java-kickstart/graphql-java-tools). ## Config Migration Needed - [ ]...
Are there plans for adding Schema Stitching feature? More: - concept: https://www.apollographql.com/docs/graphql-tools/schema-stitching.html - feature 3 listed here: https://github.com/apollographql/graphql-tools
``` Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.coxautodev.graphql.tools.SchemaParser]: Factory method 'schemaParser' threw exception; nested exception is com.coxautodev.graphql.tools.SchemaClassScannerError: Two different classes used for type Page: - interface org.springframework.data.domain.Page: | return type...
**Describe the bug** Trying to add a definition factory that can dynamically generate input types containing generic types as fields. But it turns out to be a crash. **To Reproduce**...
__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...
## Description Custom scalars and input objects used in directives are not scanned, and subsequently their type cannot be determined when building directives in `SchemaParser` ### Expected behavior ```graphql scalar...
## Description Mutations with nested input types generate errors see below. I've tried the workarounds with dummy methods but it generates stack overflow instead. The thing is that I have...
``` type Mutation { demoflowtwo_entities_createRepairApply(body: RepairApplyInput): RepairApply demoflowtwo_entities_createRepairMan(body: RepairManInput): RepairMan demoflowtwo_entities_deleteRepairApply(id: Long): Long demoflowtwo_entities_deleteRepairMan(id: Long): Long demoflowtwo_entities_updateRepairApply(body: RepairApplyInput): RepairApply demoflowtwo_entities_updateRepairMan(body: RepairManInput): RepairMan } type Query { demoflowtwo_entities_getAllRepairApplies(query: String): [RepairApply] demoflowtwo_entities_getAllRepairMen(query:...
This is an exception that is thrown by graphql-java when called from graphql-java-tools. The problem, however, is due to the way graphql-java-tools is using the graphql-java library internal API. This...
Hello, I am trying during a HTTP request or a socket to have a unique id for each request and do some clean-up actions onClose(). In specific check if the...