This package has been deprecated

Author message:

All packages in the @keystone-alpha namespace are now available in the @keystonejs namespace, starting at version 5.0.0. To upgrade, update package.json to point to "@keystonejs/app-graphql-playground": "^5.0.0" and update any require/import statements in your code.

@keystone-alpha/app-graphql-playground

1.0.1 • Public • Published

GraphQL Playground App

A KeystoneJS App that creates an Apollo GraphQL playground.

Usage

const { Keystone } = require('@keystone-alpha/keystone');
const { GraphQLApp } = require('@keystone-alpha/app-graphql');
const { GraphQLAppPlayground } = require('@keystone-alpha/app-graphql-playground');
const { AdminUIApp } = require('@keystone-alpha/app-admin-ui');

// Ensure that the GraphQLApp and GraphQLAppPlayground are referring to the same endpoint
const apiPath = '/admin/api';
module.exports = {
  new Keystone(),
  apps: [
    // This should come before the GraphQLApp, as it sets up the dev query middleware
    new GraphQLAppPlayground({ apiPath })
    // Disable the default playground on this app
    new GraphQLApp({ apiPath, graphiqlPath: undefined }),
    new AdminUIApp()
  ],
};

Config

Option Type Default Description
apiPath String /admin/api Change the API path
graphiqlPath String /admin/graphiql Change the Apollo GraphQL playground path

Readme

Keywords

none

Package Sidebar

Install

npm i @keystone-alpha/app-graphql-playground

Weekly Downloads

0

Version

1.0.1

License

MIT

Unpacked Size

7.01 kB

Total Files

5

Last publish

Collaborators

  • emmatown
  • jedwatson
  • molomby