Skip to content

Commit

Permalink
README: Update Apollo and related sections
Browse files Browse the repository at this point in the history
- Apollo Client Web: new section for using built-in support; update
  project name; more precise doc link
- Apollo Server: proper shutdown behavior; don't listen until server is
  ready; more precise doc link
- new section documenting Apollo Studio Explorer and GraphiQL IDE support

Part of enisdenjo#325.
  • Loading branch information
glasser committed Mar 9, 2022
1 parent 8ef68b5 commit cc63048
Showing 1 changed file with 69 additions and 18 deletions.
87 changes: 69 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,32 @@ const client = createClient({
</details>

<details id="apollo-client">
<summary><a href="#apollo-client">🔗</a> Client usage with <a href="https://www.apollographql.com">Apollo</a></summary>
<summary><a href="#apollo-client">🔗</a> Client usage with <a href="https://www.apollographql.com/docs/react/">Apollo Client Web</a> v3.5.10+</summary>

```typescript
// Direct support for graphql-ws added in Apollo Client Web v3.5.10.
// See the next section for older versions.
import { GraphQLWsLink } from "@apollo/client/link/subscriptions";
import { createClient } from 'graphql-ws';

const link = new GraphQLWsLink(createClient({
url: 'ws://where.is:4000/graphql',
connectionParams: () => {
const session = getSession();
if (!session) {
return {};
}
return {
Authorization: `Bearer ${session.token}`,
};
},
});
```
</details>
<details id="apollo-client">
<summary><a href="#apollo-client">🔗</a> Client usage with <a href="https://www.apollographql.com/docs/react/">Apollo Client Web</a> prior to v3.5.10</summary>
```typescript
// for Apollo Client v3:
Expand Down Expand Up @@ -1047,35 +1072,54 @@ const server = app.listen(4000, () => {
</details>
<details id="apollo-server-express">
<summary><a href="#apollo-server-express">🔗</a> <a href="https://github.com/websockets/ws">ws</a> server usage with <a href="https://github.com/apollographql/apollo-server/tree/main/packages/apollo-server-express">Apollo Server Express</a></summary>
<summary><a href="#apollo-server-express">🔗</a> <a href="https://github.com/websockets/ws">ws</a> server usage with <a href="https://www.apollographql.com/docs/apollo-server/data/subscriptions/">Apollo Server Express</a></summary>
```typescript
import express from 'express';
import { ApolloServer } from 'apollo-server-express';
import { WebSocketServer } from 'ws'; // yarn add ws
// import ws from 'ws'; yarn add ws@7
// const WebSocketServer = ws.Server;
import { createServer } from 'http';
import express from 'express';
import { ApolloServerPluginDrainHttpServer } from 'apollo-server-core';
import { WebSocketServer } from 'ws';
import { useServer } from 'graphql-ws/lib/use/ws';
import { schema } from './my-graphql-schema';

// create express
// create express and HTTP server
const app = express();
const httpServer = createServer(app);

// create apollo server
const apolloServer = new ApolloServer({ schema });
// create websocket server
const wsServer = new WebSocketServer({
server: httpServer,
path: '/graphql',
});

// apply middleware
apolloServer.applyMiddleware({ app });
// Save the returned server's info so we can shut down this server later
const serverCleanup = useServer({ schema }, wsServer);

const server = app.listen(4000, () => {
// create and use the websocket server
const wsServer = new WebSocketServer({
server,
path: '/graphql',
});
// create apollo server
const server = new ApolloServer({
schema,
plugins: [
// Proper shutdown for the HTTP server.
ApolloServerPluginDrainHttpServer({ httpServer }),

useServer({ schema }, wsServer);
// Proper shutdown for the WebSocket server.
{
async serverWillStart() {
return {
async drainServer() {
await serverCleanup.dispose();
},
};
},
},
],
});

await apolloServer.start();
apolloServer.applyMiddleware({ app });

httpServer.listen(4000);
```
</details>
Expand Down Expand Up @@ -1622,6 +1666,13 @@ const client = createClient({
</details>
## Web IDE support
`graphql-ws` is supported by:
- [Apollo Studio Explorer](https://www.apollographql.com/docs/studio/explorer/additional-features/#subscription-support); select `graphql-ws` in Connection Settings
- [GraphiQL](https://github.com/graphql/graphiql); use [`createGraphiQLFetcher`](https://github.com/graphql/graphiql/blob/main/packages/graphiql-toolkit/docs/create-fetcher.md)
## [Documentation](docs/)
Check the [docs folder](docs/) out for [TypeDoc](https://typedoc.org) generated documentation.
Expand Down

0 comments on commit cc63048

Please sign in to comment.