python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
GraphQL + Springboot + Http Headers
I'm using these graphql dependencies:
"com.graphql-java-kickstart:graphql-spring-boot-starter:12.0.0",
"com.graphql-java-kickstart:graphql-java-tools:12.0.0",
And how can...
user9150771
Votes: 0
Answers: 3
Problems implementing Interface in graphql
I am trying to implement an interface in graphql and stuck in a loop.
I am getting the following error
Object type 'FeaturedCourseDto' implements a known interface, but no class could be found for tha...
Tyler Edmonds
Votes: 0
Answers: 0
Define more than one type of query GraphQL Schema - Best approach to define different types on query one one object
Is this possible to specify more than one type of query in one schema?
type Query {
productsByRegion(match : String) : [Product]
productsByType(match : String) : [Product]
}
type Product {
...
user3222372
Votes: 0
Answers: 1
Accessing HTTP headers in GraphQL v17
Currently, I am using a custom context object in my GraphQL application. It is built via a class that extends GraphQLServletContextBuilder. In version 17, they have deprecated the use of the context...
Greg Moss
Votes: 0
Answers: 0