UNPKG

sql-to-graphql

Version:

Generate a GraphQL API based on your SQL database structure

7 lines (5 loc) 191 B
import { printSchema } from 'graphql/utilities/schemaPrinter'; import schema from '../schema'; export default function schemaPrintHandler(request, reply) { reply(printSchema(schema)); }