
First, the getting started example was incorrect and instructed users to install the wrong package. Furthermore, each integration example was duplicated on its individual package `README.md` and the verbosity of this `README.md` (which is for the entire monorepo) makes it unclear where to start. This change points those who desire the integration approach to the specific page which has more information about those integrations (and mostly the same content in terms of examples which are listed here, albeit with subtle variations.)
6 KiB
GraphQL Server for Express, Connect, Hapi, Cloudflare workers, and more
Apollo Server is a community-maintained open-source GraphQL server. It works with pretty much all Node.js HTTP server frameworks, and we're happy to take PRs for more! Apollo Server works with any GraphQL schema built with GraphQL.js, so you can build your schema with that directly or with a convenience library such as graphql-tools.
Documentation
Principles
Apollo Server is built with the following principles in mind:
- By the community, for the community: Apollo Server's development is driven by the needs of developers
- Simplicity: by keeping things simple, Apollo Server is easier to use, easier to contribute to, and more secure
- Performance: Apollo Server is well-tested and production-ready - no modifications needed
Anyone is welcome to contribute to Apollo Server, just read CONTRIBUTING.md, take a look at the roadmap and make your first PR!
Getting started
Apollo Server is super easy to set up. Just npm install apollo-server-<integration>
, write a GraphQL schema, and then use one of the following snippets to get started. For more info, read the Apollo Server docs.
There are two installation patterns:
- Standalone: To get started without integrating with an existing web framework, use the
apollo-server
package. - Integrations: For applications which have already use a web framework (e.g.
express
,koa
,hapi
, etc.), use the appropriate Apollo Server integration package.
Installation: Standalone
In a new project, install the apollo-server
and graphql
dependencies using:
npm install apollo-server graphql
Then, create an index.js
which defines the schema and its functionality (i.e. resolvers):
const { ApolloServer, gql } = require('apollo-server');
// The GraphQL schema
const typeDefs = gql`
type Query {
"A simple type for getting started!"
hello: String
}
`;
// A map of functions which return data for the schema.
const resolvers = {
Query: {
hello: () => 'world',
},
};
const server = new ApolloServer({
typeDefs,
resolvers,
});
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});
Due to its human-readability, we recommend using schema-definition language (SDL) to define a GraphQL schema but a
GraphQLSchema
object fromgraphql-js
can also be specified in place oftypeDefs
andresolvers
using theschema
property:const server = new ApolloServer({ schema: ... });
Finally, start the server using node index.js
and open your web-browser to the URL which is output on the console.
For more details, check out the Apollo Server Getting Started guide of the documentation, or for a more comprehensive understanding, see the fullstack tutorial.
For questions, the Apollo commuinty on Spectrum.chat is a great place to get assistance.
Installation: Integrations
While the standalone installation above can be used without making a decision about which web framework to use, the Apollo Server integration packages are paired with specific web frameworks (e.g. Express, Koa, hapi).
The following web frameworks have Apollo Server integrations, and each of these linked integrations has its own installation instructions and examples on its package README.md
:
- Express (Most popular)
- Koa
- Hapi
- Fastify
- Amazon Lambda
- Micro
- Azure Functions
- Google Cloud Functions
See the links above for more details on a specific integration.
Context
The context is created for each request. The following code snippet shows the creation of a context. The arguments are the request
, the request, and h
, the response toolkit.
new ApolloServer({
typeDefs,
resolvers,
context: async ({ request, h }) => {
return { ... };
},
})
Apollo Server Development
If you want to develop Apollo Server locally you must follow the following instructions:
-
Fork this repository
-
Install the Apollo Server project in your computer
git clone https://github.com/[your-user]/apollo-server
cd apollo-server
npm install
cd packages/apollo-server-<integration>/
npm link
- Install your local Apollo Server in other App
cd ~/myApp
npm link apollo-server-<integration>
Maintainers
- @martijnwalraven (Apollo)
- @abernix (Apollo)