Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/elysiajs/elysia-apollo

Plugin for Elysia for using GraphQL Apollo
https://github.com/elysiajs/elysia-apollo

Last synced: 3 months ago
JSON representation

Plugin for Elysia for using GraphQL Apollo

Awesome Lists containing this project

README

        

# @elysiajs/apollo
Plugin for [elysia](https://github.com/elysiajs/elysia) for using GraphQL Apollo.

## Installation
```bash
bun add @elysiajs/apollo @apollo/server graphql
```

## Example
```typescript
import { Elysia } from 'elysia'
import { apollo, gql } from '@elysiajs/apollo'

const app = new Elysia()
.use(
apollo({
typeDefs: gql`
type Book {
title: String
author: String
}

type Query {
books: [Book]
}
`,
resolvers: {
Query: {
books: () => {
return [
{
title: 'Elysia',
author: 'saltyAom'
}
]
}
}
}
})
)
.listen(8080)
```

## Config
This plugin extends Apollo's [ServerRegistration](https://www.apollographql.com/docs/apollo-server/api/apollo-server/#options) (which is `ApolloServer`'s' constructor parameter).

Below are the extended parameters for configuring Apollo Server with Elysia.
### path
@default "/graphql"

Path to expose Apollo Server

### enablePlayground
@default "process.env.ENV !== 'production'

Determine whether should Apollo should provide Apollo Playground