spring-graphql
spring-graphql copied to clipboard
Spring Integration for GraphQL
If the graphql schema object name differs from class name, the controller @QueryMapping works but @SchemaMapping does not work. If change graphql schema name to same as class name then...
## source code: ```graphqls type Query { getAccounts: [Account]! getAccountById(accountId: ID!): Account } type Customer { id: ID! email: String! accounts: [Account]! } type Account { id: ID! balance: Float!...
Does spring for graphql provide a way to call another graphql-server by passing the current selection set as a query? For ex: Let's say, there is an external Graphql-Server A...
I'm currently facing an issue when `JSON` scalar is not converted into a `Map` correctly. To my understanding, the issue is with `DataBinder` that tries to convert the value. In...
spring for graphql works great. I came across this issue & not sure how to decode this with `HttpGraphqlClient` retrieve or execute method. `union Notification = TweetSuggestion | SomeoneLikedYourTweet |...
is it possible to generate java code (data model and Query, Mutation,... mappings) from the schema with a maven/gradle goal?
Hi, We would like to setup custom timeout for the async GraphQL query like we used to do in the kickstart GraphQL as below. #Graphql query timeout settings graphql.servlet.async.timeout=5s
In case of collection-argument with nullable items. Passing null items in collection-argument causes NPE in `org.springframework.graphql.data.GraphQlArgumentBinder#createCollection`: `Cannot invoke "Object.getClass()" because "rawValue" is null`. Test case: Schema: ```GraphQL type Query {...
I implemented a custom scalar for the type Date. But the tests don't pass the validation process. schema.graphqls ``` scalar Date type MyType { .... MyDate: Date ``` DateScalarConfiguration ```...
Hello, I have a ManyToMany relationship between two entities Team and Job. The Team class contains the next code ``` @ManyToMany @Fetch(FetchMode.SUBSELECT) @JoinTable(name = "team_job", joinColumns = { @JoinColumn(name =...