Exposing Graphql introspection with Spring (Boot) Security
I have a pretty standard Spring Boot application that I just started with Spring Security using JWT. I’ve added in the spring boot start GraphQL support (which I’ve done on a non-secured app in the past) and it works fine. However, I’m struggling to find a solution on how to allow access to /graphicl
that will work correctly since the call to instrospect the schema is to the /graphql
route which I have locked down since that’s the route that all my data calls are made on to the resolvers.