Add support for GraphQL Java 19.2#102
Merged
Merged
Conversation
Collaborator
Author
|
@dnestoro I think this PR is ready to be considered for the next release. |
Contributor
Sure It will be reviewed and merged in next few days together with other PRs for next release |
0e02fba to
3f62d86
Compare
4 tasks
dnestoro
reviewed
Nov 16, 2022
| @@ -0,0 +1,3 @@ | |||
| type Query { | |||
| greeting: String | |||
| } No newline at end of file | |||
dnestoro
reviewed
Nov 16, 2022
|
|
||
| input NewCharacter { | ||
| name: String | ||
| } No newline at end of file |
dnestoro
approved these changes
Nov 16, 2022
Contributor
|
I added new lines directly from git |
Contributor
|
@bclozel please resolve conflicts |
This commit adds reachability metadata for the GraphQL Java project. Tests involve a simple query to trigger the base infrastructure. Since GraphQL Java will perform reflection mostly on user provided types, tests also use a complete introspection query on a complex schema to trigger reflection on GraphQL Java types.
476b09c to
d885d19
Compare
Collaborator
Author
|
@dnestoro I've just force-pushed my branch with the fixes and it's ready for merging. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds reachability metadata for the GraphQL Java project.
Tests involve a simple query to trigger the base infrastructure.
Since GraphQL Java will perform reflection mostly on user provided types, tests also use a complete introspection query on a complex schema to trigger reflection on GraphQL Java types.
Other Frameworks like Micronaut ship more metadata, but I didn't manage to trigger more reflection so far.
Pinging @melix as it's related to micronaut-projects/micronaut-core#7805