apollo-server-nextjs
Advanced tools
Weekly downloads
Changelog
apollo-server-nextjs@3.10.3
This release updates the dependency on apollo-server-core and apollo-server-express from 3.6.X to 3.10.X. Please refer to these packages for the appropriate release notes.
This includes security fixes and may require changes on your side. Most notably, you should read about:
This will be the last release for Apollo Server 3.
The 4.0.0 release of this package will only be compatible with Apollo Server 4.
Readme
This is a Next.js 12 integration of GraphQL Server. It is early work and has not been extensively tested in production.
It is based on samples provided by @glasser and the official apollo-server-lambda integration.
Apollo Server is a community-maintained open-source GraphQL server that works with many Node.js HTTP server frameworks. Read the docs. Read the CHANGELOG.
This section assumes that you already have a running Next.js project.
npm install apollo-server-nextjs graphql
Create a file named pages/api/graphql.js
, place the following code:
import { ApolloServer, gql } from "apollo-server-nextjs";
import { ApolloServerPluginLandingPageGraphQLPlayground } from "apollo-server-core";
// Construct a schema, using GraphQL schema language
const typeDefs = gql`
type Query {
hello: String
}
`;
// Provide resolver functions for your schema fields
const resolvers = {
Query: {
hello: () => "Hello world!",
},
};
const server = new ApolloServer({
typeDefs,
resolvers,
// By default, the GraphQL Playground interface and GraphQL introspection
// is disabled in "production" (i.e. when `process.env.NODE_ENV` is `production`).
//
// If you'd like to have GraphQL Playground and introspection enabled in production,
// install the Playground plugin and set the `introspection` option explicitly to `true`.
introspection: true,
plugins: [ApolloServerPluginLandingPageGraphQLPlayground()],
});
export default server.createHandler();
// Disable Next.js body parsing so that Apollo Server can access it entirely
export const config = {
api: {
bodyParser: false,
},
};
Then open http://localhost:3000/api/graphql
To enable CORS the response HTTP headers need to be modified. To accomplish this use the cors
option.
import { ApolloServer, gql } from "apollo-server-lambda";
// Construct a schema, using GraphQL schema language
const typeDefs = gql`
type Query {
hello: String
}
`;
// Provide resolver functions for your schema fields
const resolvers = {
Query: {
hello: () => "Hello world!",
},
};
const server = new ApolloServer({
typeDefs,
resolvers,
});
export default server.createHandler({
expressGetMiddlewareOptions: {
cors: {
origin: "*",
credentials: true,
},
},
});
To enable CORS response for requests with credentials (cookies, http authentication) the allow origin header must equal the request origin and the allow credential header must be set to true.
import { ApolloServer, gql } from "apollo-server-lambda";
// Construct a schema, using GraphQL schema language
const typeDefs = gql`
type Query {
hello: String
}
`;
// Provide resolver functions for your schema fields
const resolvers = {
Query: {
hello: () => "Hello world!",
},
};
const server = new ApolloServer({
typeDefs,
resolvers,
});
export default server.createHandler({
expressGetMiddlewareOptions: {
cors: {
origin: true,
credentials: true,
},
},
});
The options correspond to the express cors configuration with the following fields(all are optional):
origin
: boolean | string | string[]methods
: string | string[]allowedHeaders
: string | string[]exposedHeaders
: string | string[]credentials
: booleanmaxAge
: numberGraphQL Server is built with the following principles in mind:
Anyone is welcome to contribute to GraphQL Server, just read CONTRIBUTING.md, take a look at the roadmap and make your first PR!
FAQs
Apollo Server for Next.js API routes
The npm package apollo-server-nextjs receives a total of 1,014 weekly downloads. As such, apollo-server-nextjs popularity was classified as popular.
We found that apollo-server-nextjs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.