version 16
Readme

GraphQL Yoga Server

GraphQL Yoga from The Guild is a batteries-included cross-platform GraphQL over HTTP spec-compliant GraphQL server powered by Envelop and GraphQL Tools focused on easy setup, performance and great developer experience.

Usage

To access GraphiQL - the GraphQL Playground - visit the / route. That's what you see in the preview pane below.

Configuration and Documentation

See the GraphQL Yoga documentation for configuration and all the bells and whistles.

Endpoint

For this example, we'll set to / to make it easier to demo.

However, by default, the GraphQL route is configured to be on /graphql which is more common.

const yoga = createYoga({ schema, })

You can set a custom endpoint:

const yoga = createYoga({ schema, graphqlEndpoint: "/my-gql", })

Landing Page

A landing page is shown be default whenever a 404 is hit.

You can disable it via the landingPage option.

const yoga = createYoga({ schema, landingPage: false })
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
dthyresson-graphqlyoga.web.val.run
July 28, 2024