The GraphQL spec says that GET requests are allowed for queries
https://graphql.org/learn/serving-over-http/#get-request-and-parameters
The Spring GraphQL docs point to that document and seem to indicate that GET requests should work with a content type of application/graphql-response+json set.
https://docs.spring.io/spring-graphql/reference/transports.html
However, I can't get it to work with my server. I'm getting 405 errors back indicating that GET requests are NOT supported. Is there a way to make this work with Spring GraphQL?
The GraphQL spec says that GET requests are allowed for queries
https://graphql.org/learn/serving-over-http/#get-request-and-parameters
The Spring GraphQL docs point to that document and seem to indicate that GET requests should work with a content type of
application/graphql-response+jsonset.https://docs.spring.io/spring-graphql/reference/transports.html
However, I can't get it to work with my server. I'm getting 405 errors back indicating that GET requests are NOT supported. Is there a way to make this work with Spring GraphQL?