# GraphQL Server Middleware ## Requirements This middleware depends on [GraphQL.js](https://www.npmjs.com/package/graphql). ```sh npm i @hono/graphql-server ``` or ```plain yarn add @hono/graphql-server ``` ## Usage index.ts: ```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, }) ) app.fire() ``` ## Author Minghe Huang