This page is shown be default whenever a 404 is hit.
You can disable this by behavior via the landingPage
option.
import { createYoga } from 'graphql-yoga';
const yoga = createYoga({
landingPage: false
})
If you expected this page to be the GraphQL route, you need to configure Yoga. Currently, the GraphQL route is configured to be on /graphql
.
import { createYoga } from 'graphql-yoga';
const yoga = createYoga({
graphqlEndpoint: '/',
})