Skip to main content
Module

x/gql/types.ts

☁ Universal GraphQL HTTP middleware for Deno
Go to Latest
File
import { ServerRequest } from 'https://deno.land/std@0.90.0/http/server.ts'
/** * Request type with only required properties */export type Request = Pick<ServerRequest, 'respond' | 'body' | 'method' | 'headers'>