graphql-java-codegen
graphql-java-codegen copied to clipboard
Make your GraphQL Java application schema-driven.
Can the plugin support getFields() in GraphQLResponseProjection?
### Discussed in https://github.com/kobylynskyi/graphql-java-codegen/discussions/984 Originally posted by **ruipliu** July 22, 2022 This is to support complex use cases from client side building queries. Now the response projections only have builder...
spring-graphql compatible code generation
Now that spring-graphql is 1.0 and reasonably stable, it would be good to provide first class support for their structures. Currently @QueryMapping, @MutationMapping and @SubscriptionMapping can be shoe-horned in via...
Add annotations to JavaBean getters
--- ### Description Related to #958 Fixes the test failures in the last PR --- Changes were made to: - [x] Codegen library - Java - [ ] Codegen library...
Java Time types cannot be used when serialising GraphQlRequest
## Issue Description We are trying to use the code-gen to generate the GraphQlRequest payload, from a graphql model with custom scalar types of type java.time We have these custom...
Add annotations to JavaBean getters
### Description Add nonnull and other annotations to the getter method in addition to the field declaration. Some Java Bean introspection tools can only use annotations declared on the getter/setter...
--- ### Description Related to #ISSUE_NUMBER --- Changes were made to: - [# ] Codegen library - Java - [ ] Codegen library - Kotlin - [ ] Codegen library...
GraphQL Schema with multi-level operations fails to create GraphQLOperationRequest
## Issue Description I have a schema like below ``` type Query { product: productQuery } type Mutation { product: productMutation } type productQuery { productOrganization(id: ID!): productOrganization } type...
# Related to #859 Java implementation was done as part of #913 What's missing is the implementation for Scala and Kotlin ## Original description from #859 > > ## Issue...
Generate models with immutable list / map getters
**Is your feature request related to a problem? Please describe.** My project is in the stage of code quality checks and associated stuff, and I'm currently using a code scanner...
Feature Request: Ability to define field visibility and turn off generating getters/setters.
**Is your feature request related to a problem? Please describe.** It's frustrating having to use JavaBean getter methods to access properties of generated model classes. Also, since the model classes...