Skip to content

Commit

Permalink
READMEs: ensure all npm install lines include graphql
Browse files Browse the repository at this point in the history
It's a peer dep so it doesn't get installed by default (on older npm at least).
  • Loading branch information
glasser committed Mar 25, 2021
1 parent a5c6bcd commit b82c431
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/apollo-server-azure-functions/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
This is the Azure functions integration of GraphQL Server. Apollo Server is a community-maintained open-source GraphQL server that works with many Node.js HTTP server frameworks. [Read the docs](https://www.apollographql.com/docs/apollo-server/v2). [Read the CHANGELOG](https://github.com/apollographql/apollo-server/blob/main/CHANGELOG.md).

```shell
npm install apollo-server-azure-functions
npm install apollo-server-azure-functions graphql
```

## Writing azure function
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-server-express/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function startApolloServer() {
> to `apollo-server-express`.
```shell
npm install --save connect qs-middleware apollo-server-express
npm install --save connect qs-middleware apollo-server-express graphql
```

```js
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-server-fastify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
This is the Fastify integration of GraphQL Server. Apollo Server is a community-maintained open-source GraphQL server that works with many Node.js HTTP server frameworks. [Read the docs](https://www.apollographql.com/docs/apollo-server/). [Read the CHANGELOG.](https://github.com/apollographql/apollo-server/blob/main/CHANGELOG.md)

```shell
npm install apollo-server-fastify
npm install apollo-server-fastify graphql
```

## Fastify
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-server-hapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
This is the Hapi integration of Apollo Server. Apollo Server is a community-maintained open-source Apollo Server that works with many Node.js HTTP server frameworks. [Read the docs](https://www.apollographql.com/docs/apollo-server/). [Read the CHANGELOG.](https://github.com/apollographql/apollo-server/blob/main/CHANGELOG.md)

```shell
npm install apollo-server-hapi
npm install apollo-server-hapi graphql
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/apollo-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Anyone is welcome to contribute to Apollo Server, just read [CONTRIBUTING.md](./

To get started with Apollo Server:

* Install with `npm install apollo-server-<integration>`
* Install with `npm install apollo-server-<integration> graphql`
* Write a GraphQL schema
* Use one of the following snippets

Expand Down

0 comments on commit b82c431

Please sign in to comment.