Skip to content

Commit 04f024c

Browse files
committed
Handle options requests
1 parent b340cf9 commit 04f024c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

handler/graphql.mjs

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,12 @@
1010
import { createHandler } from 'graphql-http/lib/use/@netlify/functions';
1111
import schema from '../lib/schema';
1212

13+
const graphqlHandler = createHandler({ schema: schema.default })
14+
1315
// Create the GraphQL over HTTP native fetch handler
14-
export const handler = createHandler({ schema: schema.default });
16+
export const handler = (req, ctx) => {
17+
if (req.httpMethod === 'OPTIONS') {
18+
return { statusCode: 200 };
19+
}
20+
return graphqlHandler(req, ctx)
21+
};

netlify.toml

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
for = "/graphql*"
77
[headers.values]
88
Access-Control-Allow-Origin = "*"
9+
Access-Control-Allow-Headers = "*"

0 commit comments

Comments
 (0)