123456789101112131415161718192021222324252627282930313233 |
- import { Request, ValueOrPromise } from 'apollo-server-env';
- import { default as GraphQLOptions } from './graphqlOptions';
- import { WithRequired, GraphQLExecutionResult } from 'apollo-server-types';
- export interface HttpQueryRequest {
- method: string;
- query: Record<string, any> | Array<Record<string, any>>;
- options: GraphQLOptions | ((...args: Array<any>) => ValueOrPromise<GraphQLOptions>);
- request: Pick<Request, 'url' | 'method' | 'headers'>;
- }
- export interface ApolloServerHttpResponse {
- headers?: Record<string, string>;
- }
- export interface HttpQueryResponse {
- graphqlResponse: string;
- responseInit: ApolloServerHttpResponse;
- }
- export declare class HttpQueryError extends Error {
- statusCode: number;
- isGraphQLError: boolean;
- headers?: {
- [key: string]: string;
- };
- constructor(statusCode: number, message: string, isGraphQLError?: boolean, headers?: {
- [key: string]: string;
- });
- }
- export declare function throwHttpGraphQLError<E extends Error>(statusCode: number, errors: Array<E>, options?: Pick<GraphQLOptions, 'debug' | 'formatError'>, extensions?: GraphQLExecutionResult['extensions']): never;
- export declare function runHttpQuery(handlerArguments: Array<any>, request: HttpQueryRequest): Promise<HttpQueryResponse>;
- export declare function processHTTPRequest<TContext>(options: WithRequired<GraphQLOptions<TContext>, 'cache' | 'plugins'> & {
- context: TContext;
- }, httpRequest: HttpQueryRequest): Promise<HttpQueryResponse>;
- export declare function cloneObject<T extends Object>(object: T): T;
- //# sourceMappingURL=runHttpQuery.d.ts.map
|