Docs
Launch GraphOS Studio

Build and run queries against Apollo Server


In non-production environments, 4's landing page is an embedded version of

(served at http://localhost:4000 by default):

Apollo Sandbox

Apollo Server serves a different landing page

.

is a special mode of Apollo Studio used for local development, which doesn't require an Apollo account. Sandbox includes the
Apollo Studio Explorer
, a powerful web IDE that enables you to build and run against your server (or any other reachable server).

Production vs. non-production

In production environments (when NODE_ENV is production), Apollo Server serves a different landing page:

Apollo Server production landing page

This is partly because Apollo Server disables in production by default, which means that tools like don't work.

For this reason, if you choose to

, we recommend using different settings for production and non-production environments (potentially even
disabling your landing page
in production).

Changing the landing page

You can change the landing page that's served from Apollo Server's base URL. You can choose to

, serve
GraphQL Playground
(a legacy open-source IDE), create a completely
custom landing page
, or you can
disable the landing page entirely
.

You do this by installing one of a few different Apollo Server plugins.

Configuring the default landing page

Apollo Server uses one of these plugins to display its default landing page, depending on the environment:

  • ApolloServerPluginLandingPageLocalDefault (non-production environments)
  • ApolloServerPluginLandingPageProductionDefault (production)

You can install either of these plugins manually to configure its behavior.

For example, below, we set up our local landing page to serve up a splash page which contains a link to the Apollo Sandbox:

index.ts
import { ApolloServer } from '@apollo/server';
import {
ApolloServerPluginLandingPageLocalDefault,
ApolloServerPluginLandingPageProductionDefault,
} from '@apollo/server/plugin/landingPage/default';
const server = new ApolloServer({
typeDefs,
resolvers,
plugins: [
process.env.NODE_ENV === 'production'
? ApolloServerPluginLandingPageProductionDefault()
: ApolloServerPluginLandingPageLocalDefault({ embed: false }),
],
});

For all available configuration options for these plugins,

.

Custom landing page

You can serve a custom HTML landing page from Apollo Server's base URL. To do so, define your own

that calls the
renderLandingPage method
, like so:

index.ts
const server = new ApolloServer({
typeDefs,
resolvers,
plugins: [
{
async serverWillStart() {
return {
async renderLandingPage() {
const html = `
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>`;
return { html };
},
};
},
},
],
});

Disabling the landing page

You can disable Apollo Server's landing page by providing the following plugin to the ApolloServer constructor:

index.ts
import { ApolloServerPluginLandingPageDisabled } from '@apollo/server/plugin/disabled';
const server = new ApolloServer({
typeDefs,
resolvers,
plugins: [ApolloServerPluginLandingPageDisabled()],
});
Previous
MERN stack tutorial
Next
Request format
Edit on GitHubEditForumsDiscord

© 2024 Apollo Graph Inc.

Privacy Policy

Company