@hono/graphql-server
v0.5.1
Published
## Requirements
Downloads
17,679
Readme
GraphQL Server Middleware
Requirements
This middleware depends on GraphQL.js.
npm i @hono/graphql-server
or
yarn add @hono/graphql-server
Usage
index.ts:
import { Hono } from 'hono'
import { type RootResolver, graphqlServer } from '@hono/graphql-server'
import { buildSchema } from 'graphql'
export const app = new Hono()
const schema = buildSchema(`
type Query {
hello: String
}
`)
const rootResolver: RootResolver = (c) => {
return {
hello: () => 'Hello Hono!',
}
}
app.use(
'/graphql',
graphqlServer({
schema,
rootResolver,
graphiql: true, // if `true`, presents GraphiQL when the GraphQL endpoint is loaded in a browser.
})
)
app.fire()
Author
Minghe Huang [email protected]