We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53c598f commit a1f25a7Copy full SHA for a1f25a7
README.md
@@ -214,8 +214,10 @@ import { serve } from 'https://deno.land/[email protected]/http/server.ts';
214
import { createHandler } from 'https://esm.sh/graphql-http';
215
import { schema } from './previous-step';
216
217
+// Create the GraphQL over HTTP handler
218
const handler = createHandler<Request>({ schema });
219
220
+// Start serving on `/graphql` using the handler
221
await serve(
222
async (req: Request) => {
223
const [path, _search] = req.url.split('?');
0 commit comments