postgraphile
Version:
A GraphQL schema created by reflection over a PostgreSQL schema 🐘 (previously known as PostGraphQL)
12 lines (11 loc) • 446 B
TypeScript
import { HttpRequestHandler, CreateRequestHandlerOptions } from '../../interfaces';
export declare function isEmpty(value: any): boolean;
/**
* Creates a GraphQL request handler that can support many different `http` frameworks, including:
*
* - Native Node.js `http`.
* - `connect`.
* - `express`.
* - `koa` (2.0).
*/
export default function createPostGraphileHttpRequestHandler(options: CreateRequestHandlerOptions): HttpRequestHandler;