@vellapps/elysiajs-apollo
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

@elysiajs/apollo

Plugin for elysia for using GraphQL Apollo.

Installation

bun add @elysiajs/apollo @apollo/server graphql

Example

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 (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

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.0.41latest

Version History

VersionDownloads (Last 7 Days)Published
0.0.41
0.0.30
0.0.20
0.0.10

Package Sidebar

Install

npm i @vellapps/elysiajs-apollo

Weekly Downloads

1

Version

0.0.4

License

MIT

Unpacked Size

23.1 kB

Total Files

8

Last publish

Collaborators

  • vvella