DEV Community

Discussion on: HowTo: Integrate a MySQL Database into your Java Spring Boot GraphQL Service

Collapse
 
chandragie profile image
chandragie

Hi! Thanks for this good tutorial. I'm creating an API app with Spring Boot and set the context root to /someapp, so the way I access it through localhost:8080/someapp/

However, when I added the graphQL functions, I couldn't access the GraphiQL UI.
I tried localhost:8080/graphiql (this results 404 not found) and localhost:8080/someapp/graphiql. this loads but stuck on loading, when I opened the browser console, it is said error when trying to access localhost:8080/subscriptions and I don't know what URL it is.

Can you please advice?