honojs-middleware/deno_dist
Yusuke Wada d98b1cdacf docs(readme): rename to `@hono/graphql-server` 2023-02-04 11:02:22 +09:00
..
README.md docs(readme): rename to `@hono/graphql-server` 2023-02-04 11:02:22 +09:00
index.ts fix: bump up Hono and make it `peerDependencies` to fix type mismatch (#21) 2022-12-13 16:32:51 +09:00
mod.ts fix(ci): enable deno and fix the pipeline 2022-07-24 17:22:01 +08:00
parse-body.ts fix(ci): enable deno and fix the pipeline 2022-07-24 17:22:01 +08:00

README.md

GraphQL Server Middleware

Information

GraphQL Server Middleware @honojs/graphql-server is renamed to @hono/graphql-server. @honojs/graphql-server is not maintained, please use @hono/graphql-server. Also, for Deno, you can use import with npm: prefix like npm:@hono/graphql-server.

Requirements

This middleware depends on GraphQL.js.

npm i @hono/graphql-server

or

yarn add @hono/graphql-server

Usage

index.js:

import { Hono } from 'hono'
import { graphqlServer } from '@hono/graphql-server'
import { buildSchema } from 'graphql'

export const app = new Hono()

const schema = buildSchema(`
type Query {
  hello: String
}
`)

const rootResolver = (ctx) => {
  return {
    hello: () => 'Hello Hono!',
  }
}

app.use(
  '/graphql',
  graphqlServer({
    schema,
    rootResolver,
  })
)

app.fire()