We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've setup the graphql-tools from Apollo and the graphiql doesn't show results it gives me plain html any idea how to fix this
The text was updated successfully, but these errors were encountered:
is it like the #449 issue ?
Sorry, something went wrong.
I just ran into this. The fix for me was that I hadn't set the endpointURL correctly.
before (broken, just seeing lots of red html in the results box)
app.use('/gql', bodyParser.json(), graphqlExpress({ schema: schema })) app.use('/iql', graphiqlExpress({ endpointURL: '/iql' }));
after (fixed)
app.use('/gql', bodyParser.json(), graphqlExpress({ schema: schema })) app.use('/iql', graphiqlExpress({ endpointURL: '/gql' }));
No branches or pull requests
I've setup the graphql-tools from Apollo and the graphiql doesn't show results it gives me plain html any idea how to fix this
The text was updated successfully, but these errors were encountered: