product-service-internal.alo.software Open in urlscan Pro
34.233.155.196  Public Scan

URL: https://product-service-internal.alo.software/
Submission: On July 11 via automatic, source certstream-suspicious — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

GRAPHQL YOGA


THE BATTERIES-INCLUDED CROSS-PLATFORM GRAPHQL SERVER.

Read the Docs Start the Tutorial Visit GraphiQL


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.

          
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: '/',
})