Initial Save
This commit is contained in:
33
node_modules/apollo-server-core/dist/runHttpQuery.d.ts
generated
vendored
Normal file
33
node_modules/apollo-server-core/dist/runHttpQuery.d.ts
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
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
|
||||
Reference in New Issue
Block a user