GraphQL Yoga
Version: __YOGA_VERSION__
The batteries-included cross-platform GraphQL Server.
Not the page you are looking for? 👀
This page is shown be default whenever a 404 is hit.
You can disable this by behavior via the landingPage
option.
\n \nimport { createYoga } from 'graphql-yoga';\n\nconst yoga = createYoga({\n landingPage: false\n})\n
\n
If you expected this page to be the GraphQL route, you need to configure Yoga. Currently, the GraphQL route is configured to be on __GRAPHIQL_LINK__
.
\n \nimport { createYoga } from 'graphql-yoga';\n\nconst yoga = createYoga({\n graphqlEndpoint: '__REQUEST_PATH__',\n})\n
\n