# @oly_op/apollo-server-fastify

> @oly_op/apollo-server-fastify

Latest version **0.9.0** (published 2022-09-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install @oly_op/apollo-server-fastify
pnpm add @oly_op/apollo-server-fastify
yarn add @oly_op/apollo-server-fastify
bun add @oly_op/apollo-server-fastify
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.9.0 |
| Published | 2022-09-25 |
| First published | 2022-07-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=14 |
| Dependencies | 1 |
| Unpacked size | 31 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 70 |
| Author | Oliver Plummer |
| Maintainers | oly_op |

## Links

- npm: https://www.npmjs.com/package/@oly_op/apollo-server-fastify
- Repository: https://github.com/olyop/apollo-server-fastify
- Homepage: https://github.com/olyop/apollo-server-fastify/blob/master/README.md
- Issues: https://github.com/olyop/apollo-server-fastify/issues
- npm.io page: https://npm.io/package/@oly_op/apollo-server-fastify

## Dependencies (1)

- [fastify-plugin](https://npm.io/package/fastify-plugin.md) 4.2.1

## Recent versions

- 0.9.0 (latest) — 2022-09-25
- 0.8.1 — 2022-09-23
- 0.8.0 — 2022-09-23
- 0.7.0 — 2022-09-22
- 0.6.0 — 2022-09-17
- 0.5.1 — 2022-08-27
- 0.5.0 — 2022-08-24
- 0.4.2 — 2022-08-23
- 0.4.1 — 2022-08-15
- 0.4.0 — 2022-08-14
- 0.3.27 — 2022-08-13
- 0.3.26 — 2022-08-13
- 0.3.25 — 2022-08-12
- 0.3.24 — 2022-08-12
- 0.3.23 — 2022-08-10
- … 39 more at https://npm.io/package/@oly_op/apollo-server-fastify/versions

## README

<a href='https://www.apollographql.com/'><img src='https://avatars.githubusercontent.com/u/17189275?s=200' style="border-radius: 6px; margin-right: 6px" height='100' alt='Apollo Server'></a>
<a href='https://www.fastify.io/'><img src='https://avatars.githubusercontent.com/u/24939410?s=200' style="border-radius: 6px" height='100' alt='Fastify'></a>

[![NPM version](https://badge.fury.io/js/@oly_op%2Fapollo-server-fastify.svg)](https://www.npmjs.com/package/@oly_op/apollo-server-fastify)
[![NPM downloads](https://img.shields.io/npm/dm/@oly_op/apollo-server-fastify.svg?style=flat)](https://www.npmjs.com/package/@oly_op/apollo-server-fastify)

# Apollo Server Fastify

## Introduction

**A community-maintained package for connecting Fastify to Apollo GraphQL server.**

This is a simple package that easily allows you to connect your own Fastify server implementation to an Apollo Server instance.

## **Requirements**

- **[Node.js v14](https://nodejs.org/)** or later 
- **[Fastify v4](https://www.fastify.io/)** or later
- **[GraphQL.js v16](https://graphql.org/graphql-js/)** or later
- **[Apollo Server v4](https://www.apollographql.com/docs/apollo-server/)** or later


## **Installation**

```bash
npm install @oly_op/apollo-server-fastify @apollo/server graphql fastify
```

## **Usage**

Setup [Fastify](https://www.fastify.io/) & [Apollo Server](https://www.apollographql.com/docs/apollo-server/) like you usually would and then connect the two by using the `fastifyApollo` plugin: 

```typescript
import Fastify from "fastify"
import { ApolloServer, BaseContext } from "@apollo/server"
import fastifyApollo, { fastifyApolloDrainPlugin } from "@oly_op/apollo-server-fastify"
// ...

const fastify = Fastify()

const apollo = new ApolloServer<BaseContext>({
  typeDefs,
  resolvers,
  plugins: [
    fastifyApolloDrainPlugin(fastify),
  ],
})

await apollo.start()

// ...

await fastify.register(fastifyApollo(apollo))
```

Alternatively you can use the exported function `fastifyApolloHandler` which can be passed into any [Fastify route handler](https://www.fastify.io/docs/latest/Reference/Routes/).
This allows you to explicitly set all routing options, for example the URL path and accepted methods.

Examples shown below:

```typescript
import { fastifyApolloHandler } from "@oly_op/apollo-server-fastify"

// ... setup Fastify & Apollo

fastify.post("/graphql", fastifyApolloHandler(apollo))

fastify.get("/api", fastifyApolloHandler(apollo))

fastify.route({
  url: "/graphql",
  method: ["GET", "POST", "OPTIONS"],
  handler: fastifyApolloHandler(apollo),
})
```

Please see the [example](https://github.com/olyopop/apollo-server-fastify/tree/main/example).

## **Context**

Apollo Server 4 (AS4) has moved context setup outside of the `ApolloServer` constructor.

Define you're own context function and pass it in to the `context` option. For example:

```typescript
import { ApolloServer } from "@apollo/server"
import fastifyApollo, { fastifyApolloHandler, ApolloFastifyContextFunction } from "@oly_op/apollo-server-fastify"
// ...

interface MyContext {
  authorization: JWTPayload | false;
}

const apollo = new ApolloServer<MyContext>({ resolvers, typeDefs })

const myContextFunction: ApolloFastifyContextFunction<MyContext> = async request => ({
  authorization: await isAuthorized(request.headers.authorization),
})

await fastify.register(fastifyApollo(apollo), {
  context: myContextFunction,
})

// OR

await fastify.post("/graphql", fastifyApolloHandler(apollo, {
  context: myContextFunction,
}))
```

## **API**

All options and generics are optional other than passing in the `ApolloServer` instance.

### `fastifyApollo`

```typescript
export default function fastifyApollo<Context extends BaseContext = BaseContext>(
  apollo: ApolloServer<Context>,
): FastifyPluginAsync<ApolloFastifyPluginOptions<Context>>;
```

### `fastifyApolloHandler`

```typescript
export function fastifyApolloHandler<Context extends BaseContext = BaseContext>(
  apollo: ApolloServer<Context>,
  options?: ApolloFastifyHandlerOptions<Context>,
): RouteHandlerMethod;
```

### `ApolloFastifyContextFunction`
```typescript
export type ApolloFastifyContextFunction<Context> =
  (request: FastifyRequest, reply: FastifyReply) => Promise<Context>;
```

### `ApolloFastifyPluginOptions`:

- `path`
  - type: `string | undefined`
  - default: `"/graphql"`
- `method`
  - type: `HTTPMethod | HTTPMethod[]`
  - default: `["GET", "POST", "OPTIONS"]`
- `context`
  - type: [ApolloFastifyContextFunction](#ApolloFastifyContextFunction)
  - default: `async () => ({})`

[`HTTPMethod`](https://www.fastify.io/docs/latest/Reference/TypeScript/#fastifyhttpmethods) is exported from Fastify.

### `ApolloFastifyHandlerOptions`:

- `context`
  - type: [ApolloFastifyContextFunction](#ApolloFastifyContextFunction)
  - default: `async () => ({})`

### HTTPS/HTTP2

All functions and types optionally allow you to pass in a Server type to Fastify (the default is `http.Server`).

## **Node.JS v14**

Please pass in `forceConnections: true` to Fastify to correctly shutdown you're server on close and not hang incoming requests.

## **Contributors**

- Oliver Plummer ([olyop](https://github.com/olyop))
- Trevor Scheer ([trevor-scheer](https://github.com/trevor-scheer))

---
_Source: https://npm.io/package/@oly_op/apollo-server-fastify · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
