Express middleware to expose an endpoint for the GraphQL Playground IDE
Using yarn:
yarn add graphql-playground-middleware-express
Or npm:
npm install graphql-playground-middleware-express --save
See full example in examples/basic.
const express = require('express')
const expressPlayground = require('graphql-playground-middleware-express')
const app = express()
app.get('/playground', expressPlayground({ endpoint: '/graphql' }))