Using org.springframework.boot:spring-boot-starter-graphql and WebMvc, I have the following error while running the query:
Caused by: java.lang.IllegalStateException: Async support must be enabled on a servlet and for all filters involved in async request processing. This is done in Java code using the Servlet API or by adding "<async-supported>true</async-supported>" to servlet and filter declarations in web.xml.
- Can we disable async mode in Spring for GraphQL?
- In case not, how to enable
async-supportedin Spring for the GraphQL endpoint?