mirror of
https://github.com/vale981/apollo-server
synced 2025-03-15 15:26:40 -04:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
![]() |
import * as url from 'url';
|
||
|
import {
|
||
|
GraphQLOptions,
|
||
|
HttpQueryError,
|
||
|
runHttpQuery,
|
||
|
} from 'apollo-server-core';
|
||
|
// import * as GraphiQL from 'apollo-server-module-graphiql';
|
||
|
|
||
|
// Design principles:
|
||
|
// - You can issue a GET or POST with your query.
|
||
|
// - simple, fast and secure
|
||
|
//
|
||
|
|
||
|
export function graphqlCloudflare(options: GraphQLOptions) {
|
||
|
if (!options) {
|
||
|
throw new Error('Apollo Server requires options.');
|
||
|
}
|
||
|
|
||
|
if (arguments.length > 1) {
|
||
|
throw new Error(
|
||
|
`Apollo Server expects exactly one argument, got ${arguments.length}`,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
const graphqlHandler = async (req: RequestInit): Promise<Response> => {
|
||
|
const url = new URL((req as Request).url);
|
||
|
const query =
|
||
|
req.method === 'POST'
|
||
|
? await (req as Request).json()
|
||
|
: {
|
||
|
query: url.searchParams.get('query'),
|
||
|
variables: url.searchParams.get('variables'),
|
||
|
operationName: url.searchParams.get('operationName'),
|
||
|
extensions: url.searchParams.get('extensions'),
|
||
|
};
|
||
|
|
||
|
return runHttpQuery([req], {
|
||
|
method: req.method,
|
||
|
options: options,
|
||
|
query,
|
||
|
}).then(
|
||
|
gqlResponse => new Response(JSON.stringify(gqlResponse)),
|
||
|
(error: HttpQueryError) => {
|
||
|
if ('HttpQueryError' !== error.name) throw error;
|
||
|
|
||
|
const res = new Response(error.message, { status: error.statusCode });
|
||
|
|
||
|
if (error.headers) {
|
||
|
Object.keys(error.headers).forEach(header => {
|
||
|
res.headers[header] = error.headers[header];
|
||
|
});
|
||
|
}
|
||
|
|
||
|
return res;
|
||
|
},
|
||
|
);
|
||
|
};
|
||
|
|
||
|
return graphqlHandler;
|
||
|
}
|