From 9130b8c82e7ff2ee46b8c507347ad9cb82928494 Mon Sep 17 00:00:00 2001 From: Jesse Rosenberger Date: Thu, 25 Oct 2018 13:01:27 +0300 Subject: [PATCH] Fix incorrect comment about which `graphql-playground-` version this is. It's actually the version of `graphql-playground-react` which is getting served by `graphql-playground-html`. --- packages/apollo-server-core/src/playground.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/apollo-server-core/src/playground.ts b/packages/apollo-server-core/src/playground.ts index ee07ca09483..d209e130da9 100644 --- a/packages/apollo-server-core/src/playground.ts +++ b/packages/apollo-server-core/src/playground.ts @@ -6,9 +6,9 @@ export { RenderPageOptions as PlaygroundRenderPageOptions, } from '@apollographql/graphql-playground-html/dist/render-playground-page'; -// This specifies the version of GraphQL Playground that will be served -// from graphql-playground-html, and is passed to renderPlaygroundPage -// by the integration subclasses +// This specifies the version of `graphql-playground-react` that will be served +// from `graphql-playground-html`. It's passed to ``graphql-playground-html`'s +// renderPlaygroundPage` via the integration packages' playground configuration. const playgroundVersion = '1.7.8'; // https://stackoverflow.com/a/51365037