mercurius-js / mercurius

Implement GraphQL servers and gateways with Fastify

Home Page:https://mercurius.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Playground endpoint is not dynamic

astghikxachatryan opened this issue · comments

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

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

@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.