EdgeQL 是我为了在 edge 环境快速构建 GraphQL 服务而实现的一个轻量框架,欢迎大家尝试和反馈, 目前支持 Cloudflare Worker 和 Bun ,正在努力支持所有的 JavaScript runtimes.
import { EdgeQL } from 'edgeql'
const app = new EdgeQL()
const schema = `
type Query {
hello: String
}
`
app.handle(schema, (ctx: Context) => 'world')
export default app