Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
172 views

I have couple of existing backend services exporting graphql data for 'accounts' & 'billing'. These services have implemented graphql using graphql-java-kickstart (without springboot). I want to ...
suraj bahl's user avatar
  • 3,386
0 votes
1 answer
483 views

I am using those GraphQL Java dependencies: | +- com.graphql-java:graphql-java:jar:17.3:compile | | +- com.graphql-java:java-dataloader:jar:3.1.0:compile With this schema: schema { query: ...
Itzhak Eretz Kdosha's user avatar
1 vote
1 answer
807 views

How is a Java enum correctly registered with GraphQL when using the kickstart framework with spring? In attempting to use a GraphQL schema enum with an equivalent Java enum in a simple Java Spring ...
GrowlingBadger's user avatar
1 vote
2 answers
1k views

I have Graphql query in this format : query { priceData { customer id title dob } } In java, we use this query in String format Like : "{\"query\":\"query {\\...
user17395382's user avatar
9 votes
2 answers
6k views

Model of book from graphql schema type Book { id: ID name: String pageCount: Int author: Author } So I am having this resolver for Book public class BookResolver implements ...
doubleW's user avatar
  • 688
2 votes
2 answers
11k views

I am trying to disable GraphQL Introspection in my project and not having much luck with specific framework I am using. Some articles say it can be done in CcodeRegistry module but that is a ...
harvij's user avatar
  • 43
0 votes
1 answer
4k views

My question is: what is the best when implementing resolving methods? direct call of data repositories or calling back a main resolver aka one implementing GraphQLQueryResolver (provided it has ...
maxxyme's user avatar
  • 2,354
1 vote
1 answer
3k views

So according to the graphql-java-kickstart/graphql-java-tools a 'graphql' endpoint should become available when the dependency 'com.graphql-java-kickstart:graphql-spring-boot-starter' is added to the ...
d01berg's user avatar
  • 66
7 votes
2 answers
8k views

How to handle errors in my graphQL API? I am using graphql-java-tools and graphql-spring-boot-starter. I created error handler but every time I get response 200 even when exception was thrown. Could ...
A.Sidor's user avatar
  • 287
3 votes
2 answers
9k views

In a Spring Boot application, we're already having a fully functional GraphQL endpoint, serving .graphqls files via GraphQL Java Tools (we included the graphql-spring-boot-starter dependency) and ...
maxxyme's user avatar
  • 2,354
6 votes
4 answers
15k views

I can't find out how to upload files if i use graphql-java, can someone show me a demo? I will be appreciated! reference : https://github.com/graphql-java-kickstart/graphql-java-tools/issues/240 I ...
EA Ubisoft's user avatar
2 votes
1 answer
3k views

What is the graphql syntax in SDL to use an enum as a query argument? schema { query: Query } type Query { getWordsCountByLanguage (language: LanguageIso): [WordCount] } enum LanguageIso { ...
cksrc's user avatar
  • 2,367
9 votes
1 answer
6k views

Im new to graphql found 2 java implementation using from official graphql: https://www.graphql-java.com/documentation/v10/ and https://github.com/graphql-java-kickstart/graphql-java-tools Like ...
Orville's user avatar
  • 577
3 votes
2 answers
2k views

How can I distinguish in java graphQL if a parameter was explicitly set to null, or if it was not provided at all? The use case that I try to achieve is the following: I have a mutation like this ...
Alkis Mavridis's user avatar