Interface GraphQLHttpServerResponse<TContext>

interface GraphQLHttpServerResponse<TContext> {
    body: ExecutionResult<ObjMap<unknown>, ObjMap<unknown>>;
    context?: TContext;
    headers: Record<string, string>;
    status: number;
}

Type Parameters

  • TContext

Properties

body: ExecutionResult<ObjMap<unknown>, ObjMap<unknown>>
context?: TContext
headers: Record<string, string>
status: number