mercurius-js / mercurius

Implement GraphQL servers and gateways with Fastify
https://mercurius.dev/
MIT License
2.33k stars 234 forks source link

Playground endpoint is not dynamic #1003

Open astghikxachatryan opened 1 year ago

astghikxachatryan commented 1 year ago

const url =${window.location.protocol}//${host}${window.GRAPHQL_ENDPOINT}``

Playground doesn't work on URLs like this https://foo.com/comments/graphiql. https://foo.com/comments/ is the API getaway URL that routes to our comments service and comments service is based on Mercurius. In this case code just ignores the part after host(in my case comments)

And playground calls to wrong qraphql url. It calls https://foo.com/graphql instead of https://foo.com/comments/graphql

mcollina commented 1 year ago

Thanks for reporting! Would you like to send a Pull Request to address this issue? Remember to add unit tests.

glg-satish-tripathi commented 9 months ago

@mcollina we are deploying graphql api and using this package and we are also facing the same issue. I have created the fix . Please review and approve it.