Created
September 15, 2021 19:15
-
-
Save sibelius/7d56196f59963748634b7a7e2169a559 to your computer and use it in GitHub Desktop.
GraphQL Handler using GraphQL Helix for Nextjs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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