Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/elysiajs/elysia-apollo
- Owner: elysiajs
- License: mit
- Created: 2023-01-16T07:11:06.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-16T11:57:26.000Z (4 months ago)
- Last Synced: 2024-07-29T11:35:43.404Z (4 months ago)
- Language: TypeScript
- Size: 804 KB
- Stars: 2
- Watchers: 1
- Forks: 7
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-elysia - apollo - Plugin for using GraphQL Apollo. (Plugins)
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