apollo-graphiql-playground
v0.1.5
Published
Apollo Server plugin for the GraphiQL Playground
Maintainers
Readme
apollo-graphiql-playground
Plugin for using GraphiQL playground inside an Apollo Server.
Example
import { ApolloServerPluginLandingPageGraphiQLPlayground } from 'apollo-graphiql-playground'
const server = new ApolloServer({
plugins: [
ApolloServerPluginLandingPageGraphiQLPlayground({
shouldPersistHeaders: true,
})
],
})Options
url?(default:/graphql): Which URL should the playground should use.shouldPersistHeaders?: Toggles if the contents of the headers editor are persisted in storage.
