Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created September 15, 2021 19:15
Show Gist options
  • Save sibelius/7d56196f59963748634b7a7e2169a559 to your computer and use it in GitHub Desktop.
Save sibelius/7d56196f59963748634b7a7e2169a559 to your computer and use it in GitHub Desktop.
GraphQL Handler using GraphQL Helix for Nextjs
const graphqlHandler = async (req: NextApiRequest, res: NextApiResponse) => {
const request = {
body: req.body,
headers: req.headers,
method: req.method,
query: req.query,
};
if (shouldRenderGraphiQL(request)) {
res.send(
renderGraphiQL({
endpoint: "/api/graphql",
})
);
return;
}
// Extract the GraphQL parameters from the request
const { operationName, query, variables } = getGraphQLParameters(request);
// Validate and execute the query
const result = await processRequest({
operationName,
query,
variables,
request,
schema,
contextFactory: () => {
return getContext({
req: request,
});
},
});
if (result.type === "RESPONSE") {
// We set the provided status and headers and just the send the payload back to the client
result.headers.forEach(({ name, value }) => res.setHeader(name, value));
res.status(result.status);
res.json(result.payload);
return;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment