You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importKoafrom'koa';// yarn add koaimportmountfrom'koa-mount';// yarn add koa-mountimport{createHandler}from'graphql-sse/lib/use/koa';import{schema}from'./my-graphql';// Create a Koa appconstapp=newKoa();// Serve all methods on `/graphql/stream`app.use(mount('/graphql/stream',createHandler({ schema })));app.listen({port: 4000});console.log('Listening to port 4000');